.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;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-bottom: 60px; /* Space for content below image */
  background-color: #08160F;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit hero image height */
  overflow: hidden;
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlap with image slightly for visual effect */
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-contact__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-contact__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

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

.page-contact__contact-method-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-contact__method-contact-detail {
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-contact__email-link, .page-contact__phone-link, .page-contact__social-link, .page-contact__website-link {
  color: #22C768; /* Auxiliary color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__email-link:hover, .page-contact__phone-link:hover, .page-contact__social-link:hover, .page-contact__website-link:hover {
  color: #57E38D; /* Glow */
}

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

.page-contact__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-contact__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #22C768; /* Auxiliary color */
  border: 2px solid #22C768;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-contact__btn-secondary:hover {
  background-color: #22C768;
  color: #08160F; /* Background */
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-contact__form-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-contact__contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #08160F; /* Background */
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__form-label {
  display: block;
  font-size: 18px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input, .page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 5px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-size: 16px;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder, .page-contact__form-textarea::placeholder {
  color: #A7D9B8; /* Text Secondary */
  opacity: 0.7;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #22C768; /* Auxiliary color */
  outline: none;
  box-shadow: 0 0 8px rgba(34, 199, 104, 0.5);
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__form-submit-btn {
  width: auto;
  padding: 12px 30px;
  font-size: 18px;
}

.page-contact__form-illustration-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-contact__form-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-contact__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-contact__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  list-style: none;
}

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

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

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

.page-contact__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #22C768; /* Auxiliary color */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  content: '−';
}

.page-contact__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-contact__benefits-section .page-contact__container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-contact__benefits-content {
  flex: 1;
  min-width: 300px;
}

.page-contact__benefits-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-contact__benefits-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-contact__benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-contact__benefit-item {
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-contact__benefit-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-contact__benefit-item::before {
  content: '✓';
  color: #2AD16F;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.page-contact__benefits-cta {
  margin-top: 20px;
}

.page-contact__location-details {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__address-line {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-contact__address-line strong {
  color: #F2FFF6; /* Text Main */
}

.page-contact__map-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__location-map {
  width: 100%;
  height: auto;
  display: block;
}

.page-contact__cta-section .page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact__hero-content {
    margin-top: -50px;
  }
  .page-contact__form-wrapper, .page-contact__benefits-section .page-contact__container {
    flex-direction: column;
  }
  .page-contact__form-illustration-wrapper, .page-contact__benefits-image-wrapper {
    order: -1; /* Image first on smaller screens */
  }
  .page-contact__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }
  .page-contact__hero-content {
    margin-top: -30px;
    padding: 15px;
  }
  .page-contact__main-title {
    font-size: 28px;
  }
  .page-contact__hero-description {
    font-size: 16px;
  }
  .page-contact__section-title {
    font-size: 26px;
  }
  .page-contact__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-contact__dark-bg, .page-contact__light-bg {
    padding: 60px 0;
  }
  .page-contact__contact-method-card {
    padding: 25px;
  }
  .page-contact__method-title {
    font-size: 20px;
  }
  .page-contact__method-text, .page-contact__method-contact-detail {
    font-size: 15px;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__form-label {
    font-size: 16px;
  }
  .page-contact__form-input, .page-contact__form-textarea {
    font-size: 15px;
  }
  .page-contact__form-submit-btn {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-contact__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-contact__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }
  .page-contact__benefit-item {
    font-size: 15px;
    padding-left: 25px;
  }
  .page-contact__benefit-item::before {
    font-size: 18px;
  }
  .page-contact__address-line {
    font-size: 16px;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__btn-primary, .page-contact__btn-secondary {
    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-image,
  .page-contact__form-illustration,
  .page-contact__benefits-image,
  .page-contact__location-map {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__container,
  .page-contact__hero-image-wrapper,
  .page-contact__form-wrapper,
  .page-contact__benefits-section .page-contact__container,
  .page-contact__map-wrapper,
  .page-contact__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-contact__hero-section {
    padding-top: 10px !important;
  }
}