.contact-page {
  max-width: 940px;
  margin: 60px auto 90px;
}

.contact-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.contact-copy {
  flex: 1;
}

.contact-copy h1 {
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-intro,
.contact-personal {
  font-size: 1.15em;
  line-height: 1.7;
  color: #4a5562;
}

.contact-personal {
  margin-top: 18px;
}

.contact-options {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid #e7ecf0;
}

.contact-card {
  flex: 1 1 320px;
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e7ecf0;
  border-radius: 16px;
  background: #fff;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.contact-card:hover,
.contact-card:focus {
  border-color: #0085a1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #f3f8fa;
  color: #0085a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.contact-card-content h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.contact-card-content p {
  margin: 0 0 6px;
  color: #1f2d3d;
  font-weight: 600;
}

.contact-card-content span {
  color: #6b7785;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .contact-page {
    margin: 40px auto 70px;
  }

  .contact-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }

  .contact-photo img {
    width: 120px;
    height: 120px;
  }

  .contact-intro,
  .contact-personal {
    font-size: 1.05em;
  }
}