.page-contact {
  font-family: 'Arial', sans-serif;
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color */
  line-height: 1.6;
  padding-bottom: 50px;
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body handles main offset */
  padding-bottom: 50px;
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of the image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-contact__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-contact__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Main text color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-contact__info-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__cta-bottom-section {
  padding: 60px 0;
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Main text color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-contact__section-description {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-contact__contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__contact-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  transition: transform 0.3s ease;
}

.page-contact__contact-card:hover {
  transform: translateY(-5px);
}

.page-contact__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__card-text {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.page-contact__email-address,
.page-contact__phone-number {
  color: #F2FFF6; /* Main text color */
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.page-contact__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2AD16F; /* Main brand green */
  padding: 12px 25px;
  border: 2px solid #2AD16F; /* Main brand green */
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.page-contact__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Dark background color */
}

.page-contact__divider {
  height: 1px;
  background-color: #1E3A2A; /* Divider color */
  margin: 60px auto;
  width: 80%;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-contact__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Main text color */
  font-size: 1.5rem;
  text-decoration: none;
  border: 1px solid #2E7A4E; /* Border color */
  transition: all 0.3s ease;
  overflow: hidden; /* Hide text, use alt for screen readers */
  text-indent: -9999px;
  position: relative;
}

.page-contact__social-icon::before {
  content: ''; /* Placeholder for actual social icon */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg viewBox="0 0 24 24" fill="%23F2FFF6" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm3.5 8.5h-2v-2h-3v2h-2v3h2v2h3v-2h2v-3z"/%3e%3c/svg%3e'); /* Generic placeholder icon */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  text-indent: 0;
}

.page-contact__social-icon:nth-child(1)::before { background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg viewBox="0 0 24 24" fill="%23F2FFF6" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.347V12h2.347v-2.083c0-2.327 1.422-3.597 3.49-3.597 1.004 0 1.867.075 2.12.108v2.417h-1.43c-1.128 0-1.346.535-1.346 1.321V12h2.692l-.44 2.891h-2.252V22C18.343 21.128 22 16.991 22 12z"/%3e%3c/svg%3e'); }