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

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: #08160F; /* Ensure dark background for hero */
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px; /* Max width of hero image */
  object-fit: cover;
  display: block;
  margin-bottom: 20px; /* Space between image and content */
}

.page-contact__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-contact__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

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

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

.page-contact__contact-methods {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

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

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

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.3);
}

.page-contact__method-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

.page-contact__email-address, .page-contact__phone-number {
  font-size: 1.1rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  word-break: break-all;
}

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

.page-contact__social-link {
  color: #F2FFF6;
  background-color: #13994A; /* Darker green from button gradient */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #2AD16F; /* Lighter green from button gradient */
  color: #08160F;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #F2FFF6; /* Light background for FAQ */
  color: #333333; /* Dark text for light background */
}

.page-contact__text-dark {
  color: #333333;
}

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

.page-contact__faq-item {
  background-color: #ffffff; /* White background for light card */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.page-contact__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

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

.page-contact__faq-item[open] .page-contact__faq-question {
  background-color: #e6e6e6;
  border-bottom-color: transparent;
}

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

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

.page-contact__faq-item[open] .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

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

.page-contact__commitment-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-contact__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.3);
}

.page-contact__commitment-heading {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-contact__commitment-item p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__link {
  color: #2AD16F; /* Lighter green */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-contact__mt-40 {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-contact__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-contact__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

  .page-contact__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__method-card {
    padding: 20px;
  }

  .page-contact__method-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-contact__faq-item, .page-contact__commitment-item {
    padding: 0;
    margin: 0 15px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-contact__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-contact__commitment-list {
    grid-template-columns: 1fr;
  }

  .page-contact__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-contact__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-contact__social-links {
    flex-direction: column;
    gap: 10px;
  }

  .page-contact__social-link {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-contact__container {
    padding: 0 15px;
  }
}

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

.page-contact__hero-image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* All images must have min-width/height 200px (not applied in CSS, only checked in HTML attributes) */

/* Text color for light background */
.page-contact__card-light {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text */
}

.page-contact__dark-section {
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light text */
}

.page-contact__light-bg {
  background-color: #F2FFF6; /* Light background */
  color: #333333; /* Dark text */
}

.page-contact__btn-primary {
  color: #F2FFF6; /* Text Main for buttons */
}

.page-contact__link {
  color: #2AD16F; /* Lighter green */
}

.page-contact__link:hover {
  color: #57E38D; /* Glow */
}