.page-contact {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color, ensuring high contrast */
  background-color: var(--bg-color, #08160F); /* Fallback to a dark green/black if shared doesn't define */
  line-height: 1.6;
}

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

.page-contact__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold, #F2C14E);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-contact__section-description {
  font-size: 18px;
  color: var(--text-secondary, #A7D9B8);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--deep-green, #0A4B2C);
}

.page-contact__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-contact__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-contact__hero-description {
  font-size: 20px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__why-contact-section,
.page-contact__channels-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__commitment-section,
.page-contact__cta-bottom-section {
  padding: 80px 0;
  background-color: var(--bg-color, #08160F);
}

.page-contact__why-contact-section {
  background-color: var(--card-bg, #11271B);
}

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

.page-contact__benefit-card {
  background-color: var(--deep-green, #0A4B2C);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--divider, #1E3A2A);
}

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

.page-contact__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__benefit-title {
  font-size: 24px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
}

.page-contact__benefit-text {
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-contact__channel-card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border, #2E7A4E);
}

.page-contact__channel-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-contact__channel-title {
  font-size: 24px;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
}

.page-contact__channel-text {
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-contact__email-address,
.page-contact__phone-number {
  font-size: 18px;
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 20px;
}

.page-contact__channel-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-contact__channel-cta-button:hover {
  opacity: 0.9;
}

.page-contact__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-contact__social-link {
  color: var(--gold, #F2C14E);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__social-link:hover {
  color: var(--glow, #57E38D);
}

.page-contact__form-section {
  background-color: var(--deep-green, #0A4B2C);
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border, #2E7A4E);
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  font-size: 18px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  background-color: var(--bg-color, #08160F);
  color: var(--text-main, #F2FFF6);
  font-size: 16px;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: var(--text-secondary, #A7D9B8);
  opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: var(--glow, #57E38D);
  box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__form-submit-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.page-contact__faq-section {
  background-color: var(--bg-color, #08160F);
}

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

.page-contact__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

details.page-contact__faq-item > summary.page-contact__faq-question {
  list-style: none;
}

details.page-contact__faq-item > summary.page-contact__faq-question::-webkit-details-marker {
  display: none;
}

.page-contact__faq-question:hover {
  background-color: var(--primary-color, #11A84E);
}

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

.page-contact__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-contact__faq-answer {
  padding: 20px 25px;
  background-color: var(--card-bg, #11271B);
  color: var(--text-secondary, #A7D9B8);
  font-size: 16px;
  border-top: 1px solid var(--divider, #1E3A2A);
}

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

.page-contact__faq-answer a {
  color: var(--glow, #57E38D);
  text-decoration: underline;
}

.page-contact__commitment-section {
  background-color: var(--deep-green, #0A4B2C);
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  font-size: 18px;
  color: var(--text-main, #F2FFF6);
}

.page-contact__commitment-list li {
  background-color: var(--card-bg, #11271B);
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid var(--gold, #F2C14E);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-contact__commitment-image {
  display: block;
  margin: 40px auto 0;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-bottom-section {
  background-color: var(--bg-color, #08160F);
  text-align: center;
}

.page-contact__cta-bottom-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-contact__cta-bottom-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-image-wrapper {
    height: 400px;
  }
  .page-contact__hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-contact__hero-description {
    font-size: 18px;
  }
  .page-contact__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-contact__section-description {
    font-size: 16px;
  }
  .page-contact__channels-grid,
  .page-contact__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }
  .page-contact__hero-image-wrapper {
    height: 300px;
    margin-bottom: 30px;
  }
  .page-contact__hero-title {
    font-size: clamp(28px, 6vw, 38px);
  }
  .page-contact__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-contact__hero-cta-button,
  .page-contact__cta-bottom-button {
    padding: 12px 25px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-contact__why-contact-section,
  .page-contact__channels-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__commitment-section,
  .page-contact__cta-bottom-section {
    padding: 50px 0;
  }

  .page-contact__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-contact__benefits-grid,
  .page-contact__channels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-contact__benefit-card,
  .page-contact__channel-card {
    padding: 25px;
  }

  .page-contact__channel-icon {
    height: 180px;
  }

  .page-contact__form-section {
    padding: 50px 20px;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__form-label {
    font-size: 16px;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 12px;
    font-size: 15px;
  }

  .page-contact__form-submit-button {
    font-size: 18px;
  }

  .page-contact__faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }

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

  .page-contact__commitment-list li {
    font-size: 16px;
    padding: 12px 20px;
  }

  /* Ensure images are responsive */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-contact__hero-image-wrapper,
  .page-contact__channels-grid,
  .page-contact__benefits-grid,
  .page-contact__contact-form,
  .page-contact__faq-list,
  .page-contact__commitment-image,
  .page-contact__hero-cta-button,
  .page-contact__cta-bottom-button,
  .page-contact__channel-cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-contact__hero-section,
  .page-contact__why-contact-section,
  .page-contact__channels-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__commitment-section,
  .page-contact__cta-bottom-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-contact__container {
    padding: 0 15px;
  }
}

/* Color contrast fixes if needed */
.page-contact__dark-bg {
  color: #ffffff;
  background: #11A84E;
}
.page-contact__light-bg {
  color: #333333;
  background: #ffffff;
}
.page-contact__medium-bg {
  color: #000000;
  background: #22C768;
}

.page-contact__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-contact__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}