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

.page-contact a {
  color: #2AD16F; /* Lighter green for links */
  text-decoration: none;
}

.page-contact a:hover {
  text-decoration: underline;
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-contact__hero-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
}

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

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

.page-contact__inline-link {
  color: #57E38D; /* Glow for inline links */
}

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

.page-contact__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-contact__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* General Section Styling */
.page-contact__channels-section,
.page-contact__guidance-section,
.page-contact__commitment-section,
.page-contact__faq-section,
.page-contact__notes-section {
  padding: 80px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

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

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

.page-contact__channel-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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow */
}

.page-contact__channel-icon {
  width: 200px; /* Min size */
  height: 150px; /* Adjust as needed, ensure min 200x200 if not icon-like */
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Enhance visibility on dark background */
}

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

.page-contact__channel-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 25px;
}

.page-contact__channel-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__channel-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Guidance Section */
.page-contact__content-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-contact__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-contact__text-block {
  flex: 1;
  color: #F2FFF6;
}

.page-contact__text-block p {
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-contact__guidance-list {
  list-style: disc;
  margin-left: 20px;
  color: #F2FFF6;
}

.page-contact__guidance-list li {
  margin-bottom: 10px;
}

.page-contact__guidance-list ul {
  list-style: circle;
  margin-left: 20px;
  margin-top: 5px;
  color: #A7D9B8;
}

.page-contact__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact__guidance-image,
.page-contact__notes-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-contact__commitment-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__commitment-subtitle {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* FAQ Section */
.page-contact__faq-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-contact__faq-image {
  flex: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-contact__faq-list {
  flex: 1;
}

.page-contact__faq-item {
  margin-bottom: 15px;
}

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

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-contact__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-contact__faq-answer p {
  margin-top: 10px;
}

/* Notes Section */
.page-contact__notes-list {
  list-style: disc;
  margin-left: 20px;
  color: #F2FFF6;
}

.page-contact__notes-list li {
  margin-bottom: 10px;
}

.page-contact__notes-list li strong {
  color: #F2FFF6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__content-flex {
    flex-direction: column;
    align-items: center;
  }

  .page-contact__content-flex--reverse {
    flex-direction: column;
  }

  .page-contact__image-block {
    margin-top: 30px;
  }

  .page-contact__faq-wrapper {
    flex-direction: column;
  }

  .page-contact__faq-image {
    order: 1;
    margin-bottom: 30px;
  }

  .page-contact__faq-list {
    order: 2;
  }
}

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

  .page-contact__hero-content-wrapper {
    padding: 15px;
  }

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

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

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-contact__channels-section,
  .page-contact__guidance-section,
  .page-contact__commitment-section,
  .page-contact__faq-section,
  .page-contact__notes-section {
    padding: 40px 0;
  }

  .page-contact__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

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

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

  .page-contact__guidance-image,
  .page-contact__notes-image,
  .page-contact__faq-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }

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

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

  .page-contact__faq-answer p {
    font-size: 0.9em;
  }

  /* Buttons responsive */
  .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-wrapper .page-contact__cta-button {
    width: auto !important;
    max-width: 80% !important; /* Allow some margin on sides */
    margin: 0 auto;
  }

  .page-contact__channel-button {
    width: auto !important;
    max-width: 80% !important;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: clamp(1.5em, 7vw, 2.2em);
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__section-title {
    font-size: clamp(1.3em, 6vw, 1.8em);
  }
  .page-contact__section-description {
    font-size: 0.85em;
  }
  .page-contact__channel-card,
  .page-contact__commitment-item {
    padding: 20px;
  }
  .page-contact__channel-title {
    font-size: 1.3em;
  }
  .page-contact__faq-question {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-contact__faq-answer {
    padding: 0 15px 15px 15px;
  }
}