@charset "UTF-8";
/* CSS Document */

.contact-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 30px 0 45px;
}

.contact-hero__image {
  flex: 0 0 38%;
  max-width: 420px;
}

.contact-hero__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-hero__text {
  flex: 1;
}

.contact-hero__text h2 {
  margin-bottom: 15px;
  color: #005c69;
}

.contact-hero__text p {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-hero {
    flex-direction: column;
    gap: 25px;
    margin: 20px 0 35px;
  }

  .contact-hero__image {
    width: 100%;
    max-width: 360px;
  }

  .contact-hero__text {
    text-align: center;
  }

  .contact-hero__text p {
    font-size: 18px;
  }
}
