/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body handles actual background */
}

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

.page-about__hero-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -150px; /* Adjust to overlap slightly without covering image */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-about__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary */
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

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

.page-about__grid-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about__card-title {
  font-size: 1.5em;
  color: #22C768; /* Auxiliary */
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-about__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__feature-list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-about__feature-list li::before {
  content: '✓';
  color: #2AD16F; /* Button top color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__content-grid-reverse {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap-reverse; /* Image on right for desktop, then text */
}

.page-about__team-section .page-about__container {
  text-align: center;
}

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

.page-about__team-member {
  text-align: center;
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
}

.page-about__member-name {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 5px;
  font-weight: 600;
}

.page-about__member-role {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.9em;
}

.page-about__faq-section {
  background-color: #08160F; /* Background */
  padding: 60px 20px;
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Button top color */
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.7;
}

.page-about__faq-item[open] .page-about__faq-question {
  background-color: #1E3A2A; /* Divider */
}

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

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

.page-about__invitation-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
}

.page-about__invitation-section .page-about__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-about__invitation-section .page-about__text-block {
  color: #F2FFF6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-about__invitation-section .page-about__btn-primary {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-about__invitation-section .page-about__btn-primary:hover {
  background: #073a21;
}

.page-about__invitation-section .page-about__btn-secondary {
  background: #F2C14E; /* Gold */
  color: #08160F; /* Background */
  border: none;
}

.page-about__invitation-section .page-about__btn-secondary:hover {
  background: #e0b03d;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -100px;
    padding: 25px;
  }
  .page-about__main-title {
    font-size: 2.2em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-flex, .page-about__content-grid-reverse {
    flex-direction: column;
  }
  .page-about__image-wrapper {
    order: -1; /* Image always on top for mobile */
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    margin-top: -80px;
    padding: 20px;
  }
  .page-about__main-title {
    font-size: 1.8em;
  }
  .page-about__tagline {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__text-block {
    font-size: 0.95em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-about__card,
  .page-about__grid-item,
  .page-about__team-member {
    padding: 20px;
  }
  .page-about__image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__image-wrapper,
  .page-about__container,
  .page-about__content-grid,
  .page-about__value-cards,
  .page-about__content-flex,
  .page-about__content-grid-reverse,
  .page-about__content-grid-team,
  .page-about__faq-list,
  .page-about__invitation-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-about__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-about__team-image {
    width: 150px;
    height: 150px;
  }
}