* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  display: flex;
  min-height: 100vh;
  flex-direction: row;
  align-items: flex-start;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  border-right: 1px solid #ddd;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.name {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 20px;
  color: #222;
}

/* Contact */
.contact-links {
  font-size: 0.85em;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  gap: 6px;
  color: #555;
}

.contact-item a {
  color: #007bff;
  font-size: 1.2em;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-item a:hover {
  color: #0056b3;
  transform: scale(1.15);
}

.contact-item span {
  font-size: 0.9em;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 40px;
  background-color: white;
}

/* Section layout */
.section {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.section-title {
  display: block;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #0077cc;
  border-left: 4px solid #0077cc;
  padding-left: 10px;
  width: 100%;
  line-height: 1.3;
}

.section-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
}

a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: all 0.2s ease;
}

a:hover {
  color: #003f7f;
  border-bottom: 1px dotted #003f7f;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background: #f4f4f4;
  border-top: 1px solid #ddd;
}
