/* Main Section */
.contact-main {
  margin: 0;
  padding: 32px 20px;
}

.contact-intro {
  max-width: 1280px;
  margin: 0 auto 24px auto;
  font-size: 1.05rem;
  text-align: left;
  padding: 32px 0;
}

.contact-details-box {
  background: #ededed;
  max-width: 1280px;
  border-radius: 4px;
  padding: 24px 32px;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  margin: 0 auto 32px auto;
  word-break: break-word;
}
.contact-details-box a {
  color: var(--primary, #202a45);
  text-decoration: none;
  word-break: break-all;
}
.contact-details-box p {
  margin: 0.5em 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .contact-hero {
    height: 90px;
    min-height: 90px;
  }
  .contact-hero-content {
    left: 24px;
  }
  .contact-hero-content h1 {
    font-size: 1.2rem;
  }
  .contact-hero-image {
    width: 45%;
    min-width: 120px;
  }
  .contact-hero-gradient {
    width: 45%;
  }
  .contact-intro {
    font-size: 1rem;
    padding: 0 12px;
  }
  .contact-details-box {
    padding: 18px 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .contact-hero {
    flex-direction: column;
    height: auto;
    min-height: 60px;
  }
  .contact-hero-content {
    position: static;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0 12px 12px;
  }
  .contact-hero-content h1 {
    font-size: 1.05rem;
  }
  .contact-hero-image {
    position: static;
    width: 100%;
    height: 60px;
    min-width: 0;
  }
  .contact-hero-image img {
    height: 60px;
    object-fit: cover;
  }
  .contact-hero-gradient {
    width: 100%;
    height: 60px;
    left: 0;
    top: 0;
    background: linear-gradient(
      to right,
      rgba(10, 20, 40, 0.95),
      transparent 70%
    );
  }
  .contact-intro {
    font-size: 0.97rem;
    padding: 0 6px;
  }
  .contact-details-box {
    padding: 12px 6px;
    font-size: 0.96rem;
    max-width: 100%;
  }
}
