body {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
  color: #222;
  background: #ebebeb;
/* lighter grey #f0f0f0 */
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2rem;
  color: #002fa7;
}

a {
  color: #6682ca;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.about {
  display: grid;
  grid-template-columns: 1.5fr 170px;
  gap: 24px;
  align-items: start;
  margin-top: 2rem;
}

.about-photo {
  width: 160px;
  height: auto;
  margin-top: 74px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #ddd;
  display: block;
}

@media (max-width: 700px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: 140px;
    margin-top: 0;
  }
}
