.page-contact {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6);
  min-height: 400px;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  margin-top: 100px; /* Push content down to avoid overlapping the very top of the image */
}

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

.page-contact__intro-text {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.page-contact__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG color for alternating sections */
}

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

.page-contact__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-contact__section-description {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__channel-card, .page-contact__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-contact__channel-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-contact__channel-title, .page-contact__feature-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__channel-description, .page-contact__feature-description {
  font-size: 0.95em;
  color: #A7D9B8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  color: #F2FFF6;
  font-weight: 500;
}

.page-contact__form-input, .page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #2E7A4E;
  border-radius: 5px;
  background-color: #0A4B2C;
  color: #F2FFF6;
  font-size: 1em;
  box-sizing: border-box;
}

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

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

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

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(19, 153, 74, 0.4);
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(19, 153, 74, 0.6);
}

.page-contact__btn-secondary {
  background-color: transparent;
  border: 2px solid #11A84E;
  color: #11A84E;
  margin-left: 20px; /* Only if side-by-side */
}

.page-contact__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
}

.page-contact__link {
  color: #57E38D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #F2C14E;
  text-decoration: underline;
}

.page-contact__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-contact__faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #2E7A4E;
}

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

.page-contact__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #57E38D;
}

.page-contact__faq-item[open] .page-contact__faq-question {
  border-bottom: none;
}

.page-contact__faq-answer {
  padding: 20px 30px;
  background-color: #11271B;
  color: #A7D9B8;
  font-size: 0.95em;
  border-top: 1px solid #2E7A4E; /* Ensures a divider if closed */
}

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

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

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

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

.page-contact__feature-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-contact__feature-item p {
  flex-grow: 1;
}

.page-contact__why-choose-us-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-section {
  background-color: #0A4B2C;
  padding: 80px 20px;
}

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

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

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-top: 10px !important;
    min-height: 350px;
  }

  .page-contact__hero-image {
    min-height: 350px;
  }

  .page-contact__hero-content {
    margin-top: 60px;
    padding: 15px;
  }

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

  .page-contact__intro-text {
    font-size: 1em;
  }

  .page-contact__section {
    padding: 40px 15px;
  }

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

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

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

  .page-contact__channel-card, .page-contact__feature-item {
    padding: 20px;
  }

  .page-contact__channel-icon {
    max-width: 150px;
  }

  .page-contact__form {
    padding: 20px;
  }

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

  .page-contact__faq-qtext {
    font-size: 1em;
  }

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

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__button {
    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__btn-secondary {
    margin-left: 0;
  }

  /* Mobile image and video responsive styles */
  .page-contact img,
  .page-contact video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__channels-grid,
  .page-contact__feature-list,
  .page-contact__form,
  .page-contact__faq-list,
  .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-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-content {
    margin-top: 40px;
  }

  .page-contact__main-title {
    font-size: clamp(1.6em, 9vw, 2em);
  }

  .page-contact__intro-text {
    font-size: 0.9em;
  }

  .page-contact__section-title {
    font-size: clamp(1.4em, 7vw, 1.8em);
  }

  .page-contact__channel-title, .page-contact__feature-title {
    font-size: 1.3em;
  }

  .page-contact__channel-description, .page-contact__feature-description, .page-contact__faq-answer {
    font-size: 0.9em;
  }
}