.page-contact {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below image */
  background-color: #08160F;
  overflow: hidden; /* Ensure no image overflow */
  padding-top: 10px; /* Small top padding for the section */
}

.page-contact__hero-image {
  width: 100%;
  max-width: 1920px; /* Larger than container to fill space */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px; /* Space between image and text */
}

.page-contact__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

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

/* Section Titles */
.page-contact__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-contact__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-contact__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

/* CTA Buttons */
.page-contact__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-contact__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow color */
}

.page-contact__large-button {
  padding: 16px 35px;
  font-size: 1.2rem;
}

/* Backgrounds */
.page-contact__dark-bg {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

.page-contact__light-bg {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
  color: #F2FFF6; /* Ensure text is light on this darker background */
}

/* Intro Section */
.page-contact__intro-section .page-contact__text-block {
  color: #F2FFF6;
}

/* Channels Section */
.page-contact__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__channel-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.2); /* Glow color */
}

.page-contact__channel-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%; /* Responsive image */
  height: auto;
  display: block;
}

.page-contact__channel-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-contact__channel-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-contact__email-link,
.page-contact__phone-link,
.page-contact__social-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-contact__email-link:hover,
.page-contact__phone-link:hover,
.page-contact__social-link:hover {
  text-decoration: underline;
}

.page-contact__channel-button {
  margin-top: auto; /* Push button to bottom */
}

/* When to Contact Section */
.page-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__list-item {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 5px solid #57E38D; /* Glow */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  transition: transform 0.2s ease;
}

.page-contact__list-item:hover {
  transform: translateX(5px);
}

.page-contact__list-item strong {
  color: #F2C14E; /* Gold */
}

/* Guide Section */
.page-contact__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__guide-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
}

.page-contact__guide-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-contact__guide-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Commitment Section */
.page-contact__commitment-section .page-contact__list-item {
  background-color: #0A4B2C; /* Deep Green */
}

/* FAQ Section */
.page-contact__faq-list {
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden; /* For details tag */
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-contact__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-contact__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  line-height: 1;
  margin-left: 15px;
}

.page-contact__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
}
.page-contact__faq-answer p:last-child {
  margin-bottom: 0;
}

/* CTA Banner */
.page-contact__cta-banner {
  text-align: center;
  padding: 80px 20px;
  background-color: #08160F;
  border-top: 1px solid #2E7A4E;
}

.page-contact__cta-content {
  max-width: 900px;
}

.page-contact__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .page-contact__hero-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 15px;
  }
  .page-contact__hero-section {
    padding-bottom: 40px;
  }
  .page-contact__hero-content {
    padding: 0 15px;
  }
  .page-contact__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-contact__hero-description {
    font-size: 1rem;
  }
  .page-contact__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .page-contact__text-block,
  .page-contact__list-item,
  .page-contact__guide-description,
  .page-contact__faq-answer p {
    font-size: 0.95rem;
  }
  .page-contact__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
    width: 100% !important; /* Mobile button width */
  }
  .page-contact__large-button {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
  .page-contact__channel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__channel-card {
    padding: 25px;
  }
  .page-contact__channel-title {
    font-size: 1.3rem;
  }
  .page-contact__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-contact__faq-toggle {
    font-size: 1.2rem;
  }
  .page-contact__cta-banner {
    padding: 60px 20px;
  }
  .page-contact__cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-contact__cta-description {
    font-size: 1rem;
  }

  /* Mobile image responsiveness */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/content */
  .page-contact__hero-section,
  .page-contact__intro-section,
  .page-contact__channels-section,
  .page-contact__when-to-contact,
  .page-contact__guide-section,
  .page-contact__commitment-section,
  .page-contact__faq-section,
  .page-contact__cta-banner {
    padding-left: 0 !important; /* Container handles padding */
    padding-right: 0 !important; /* Container handles padding */
  }
  .page-contact__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-contact__channel-card,
  .page-contact__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure buttons wrap if multiple in a group */
  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-contact__cta-button {
    margin-bottom: 10px;
  }
  .page-contact__cta-button:last-child {
    margin-bottom: 0;
  }

  /* Video responsiveness (if any, though not explicitly in contact page outline) */
  .page-contact video,
  .page-contact__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__video-section,
  .page-contact__video-container,
  .page-contact__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  .page-contact__video-section {
    padding-top: 10px !important;
  }
}