/* style/about.css */

/* Body background is handled by shared.css: var(--background-color, #08160F) */
/* Main text color should be light for dark background */
.page-about {
  font-family: Arial, sans-serif;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  line-height: 1.6;
  background-color: var(--background-color, #08160F); /* Background */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color, #1E3A2A); /* Divider */
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding */
  background-color: var(--background-color, #08160F); /* Background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-about__section-title--light {
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

.page-about__section-description {
  font-size: 1.1rem;
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section-description--light {
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
}

.page-about__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__content-text p,
.page-about__card p,
.page-about__list-item p,
.page-about__faq-answer p {
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
  margin-bottom: 15px;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for mobile */
}

.page-about__cta-buttons--center {
  justify-content: center;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4); /* Glow */
}

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

.page-about__btn-secondary {
  background-color: transparent;
  color: var(--gold-color, #F2C14E); /* Gold */
  border: 2px solid var(--gold-color, #F2C14E); /* Gold */
}

.page-about__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  border-color: var(--text-main-color, #F2FFF6); /* Text Main */
  transform: translateY(-2px);
}

.page-about__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  object-fit: cover;
}

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

.page-about__card {
  background-color: var(--card-bg-color, #11271B); /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #2E7A4E); /* Border */
}

.page-about__card-title,
.page-about__list-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  margin-bottom: 15px;
}

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

.page-about__list-item {
  background-color: var(--card-bg-color, #11271B); /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color, #2E7A4E); /* Border */
}

/* FAQ styles */
.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  background-color: var(--card-bg-color, #11271B); /* Card BG */
  border: 1px solid var(--border-color, #2E7A4E); /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  cursor: pointer;
  background-color: rgba(17, 40, 27, 0.7); /* Slightly lighter than card BG for contrast */
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: rgba(17, 40, 27, 1);
}

.page-about__faq-item[open] .page-about__faq-question {
  background-color: var(--deep-green-color, #0A4B2C); /* Deep Green */
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-color, #F2C14E); /* Gold */
}

.page-about__faq-item[open] .page-about__faq-toggle {
  color: var(--text-main-color, #F2FFF6); /* Text Main */
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8); /* Text Secondary */
}

.page-about__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Bottom CTA section */
.page-about__cta-bottom {
  background-color: var(--deep-green-color, #0A4B2C); /* Deep Green */
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-container {
  max-width: 900px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px; /* Add padding for mobile containers */
  }

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-about__main-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .page-about__intro-text {
    font-size: 1rem;
  }

  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

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

  .page-about__sub-title {
    font-size: 1.5rem;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Ensure buttons also have side padding */
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-about__hero-image,
  .page-about__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-image-wrapper,
  .page-about__card,
  .page-about__list-item,
  .page-about__faq-item,
  .page-about__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }
}

/* Ensure no filter is used on images */
.page-about img {
  filter: none !important;
}

/* For video elements, if any (not in this page, but as a safeguard) */
.page-about video {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  filter: none !important;
}

.page-about__video-section,
.page-about__video-container,
.page-about__video-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  padding-left: 15px;
  padding-right: 15px;
}
.page-about__video-section {
  padding-top: 10px !important; /* Small top padding for video section */
}