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

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /* Ensure image does not have filter */
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: 100px; /* Space from top */
}

.page-contact__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-contact__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__info-section,
.page-contact__channels-section,
.page-contact__process-section,
.page-contact__commitment-section,
.page-contact__faq-section,
.page-contact__cta-section {
  padding: 80px 0;
}

.page-contact__channels-section {
  background-color: #11271B; /* Card BG */
}

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

.page-contact__grid--channels {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-contact__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-contact__channel-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  /* Ensure image does not have filter */
}

.page-contact__channel-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  background: #22C768; /* Auxiliary color */
  color: #08160F; /* Dark text for contrast */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__channel-button:hover {
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
}

.page-contact__email-link,
.page-contact__phone-link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-contact__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-contact__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 25px;
}

.page-contact__step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  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;
}

.page-contact__faq-item[open] .page-contact__faq-question {
  background-color: #11A84E; /* Main color */
}

.page-contact__faq-qtext {
  flex-grow: 1;
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-contact__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E;
}

.page-contact__faq-answer p {
  margin: 0;
}

.page-contact__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-section .page-contact__section-title--cta {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-contact__cta-section .page-contact__text-main {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.page-contact__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.page-contact__cta-image {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -100px; /* Adjust as needed */
  width: 800px;
  height: auto;
  opacity: 0.2;
  z-index: 1;
  transform: rotate(10deg);
  /* Ensure image does not have filter */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-content {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }

  .page-contact__hero-image {
    position: relative;
    height: 300px;
    object-fit: cover;
  }

  .page-contact__hero-content {
    padding: 30px 15px;
    margin-top: -150px; /* Pull content up over image */
    max-width: 90%;
  }

  .page-contact__main-title {
    font-size: 2rem;
  }

  .page-contact__hero-description {
    font-size: 0.95rem;
  }

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-contact__section-title {
    font-size: 1.8rem;
  }

  .page-contact__section-intro {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-contact__info-section,
  .page-contact__channels-section,
  .page-contact__process-section,
  .page-contact__commitment-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    padding: 50px 0;
  }

  .page-contact__grid,
  .page-contact__grid--channels,
  .page-contact__steps {
    grid-template-columns: 1fr;
  }

  .page-contact__card {
    padding: 25px;
  }

  .page-contact__card-title {
    font-size: 1.3rem;
  }

  .page-contact__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-contact__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-contact__cta-section {
    padding: 60px 0;
  }

  .page-contact__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .page-contact__cta-image {
    width: 600px;
    bottom: -80px;
    right: -150px;
  }
}

@media (max-width: 768px) {
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__channels-section,
  .page-contact__process-section,
  .page-contact__commitment-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-contact__cta-button,
  .page-contact__channel-button,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__hero-content {
    margin-top: -100px; /* Adjust for smaller screens */
  }
}