* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fafafa;
}

a {
  color:  #990000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 16px;
}

.header .name {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #011F5B;
}

.content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.main-text {
  flex: 2;
}

.sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.profile-photo {
  width: 260px;
  max-width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-row {
  display: flex;
  gap: 56px;
  font-size: 1.0rem;
}

.icon-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 999px;
  background-color: #f1f1f1;
}

.icon-row a:hover {
  background-color: #e5e5e5;
}

.highlight-box {
  border-radius: 12px;
  padding: 16px 18px;
  background-color: #f5f0ff;
  border: 1px solid #e0d4ff;
  margin: 20px 0 28px;
}

h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  color: #011F5B
}

@media (max-width: 800px) {
  .content {
    flex-direction: column;
  }

  .header .name {
    font-size: 2rem;
  }

  .page {
    margin-top: 24px;
  }

  .sidebar {
    align-items: flex-start;
  }
}
