/* style/about.css */

:root {
  --page-about-primary-color: #11A84E;
  --page-about-secondary-color: #22C768;
  --page-about-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-about-card-bg: #11271B;
  --page-about-background: #08160F;
  --page-about-text-main: #F2FFF6;
  --page-about-text-secondary: #A7D9B8;
  --page-about-border-color: #2E7A4E;
  --page-about-glow-color: #57E38D;
  --page-about-gold-color: #F2C14E;
  --page-about-divider-color: #1E3A2A;
  --page-about-deep-green: #0A4B2C;
}

.page-about {
  font-family: 'Arial', sans-serif;
  color: var(--page-about-text-main); /* Light text on dark background */
  background-color: var(--page-about-background);
}

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

.page-about__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--page-about-text-main);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  overflow: hidden;
  background: var(--page-about-deep-green);
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-about__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-about__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 800;
  color: var(--page-about-gold-color);
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-about__hero-description {
  font-size: 1.15em;
  color: var(--page-about-text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-about__btn-primary {
  background: var(--page-about-button-gradient);
  color: var(--page-about-text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn-secondary {
  background: transparent;
  color: var(--page-about-gold-color);
  border: 2px solid var(--page-about-gold-color);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-about__btn-secondary:hover {
  background: var(--page-about-gold-color);
  color: var(--page-about-background);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-about__story-section,
.page-about__values-section,
.page-about__why-choose-us-section,
.page-about__team-section,
.page-about__vision-section,
.page-about__cta-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: var(--page-about-background);
}

.page-about__story-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__story-content {
  flex: 1;
}

.page-about__story-subtitle {
  font-size: 2em;
  color: var(--page-about-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__story-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--page-about-text-secondary);
  margin-bottom: 20px;
}

.page-about__story-image-wrapper {
  flex: 1;
  min-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

.page-about__value-card {
  background-color: var(--page-about-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border: 1px solid var(--page-about-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(87, 227, 141, 0.2);
}

.page-about__value-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-about__value-title {
  font-size: 1.5em;
  color: var(--page-about-gold-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-about__value-card p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--page-about-text-secondary);
}

.page-about__why-choose-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse; /* Image on right, text on left for this section */
}

.page-about__why-choose-content {
  flex: 1;
}

.page-about__why-choose-subtitle {
  font-size: 2em;
  color: var(--page-about-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__why-choose-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--page-about-text-secondary);
  margin-bottom: 20px;
}

.page-about__why-choose-image-wrapper {
  flex: 1;
  min-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.page-about__explore-btn {
  margin-top: 20px;
}

.page-about__team-description,
.page-about__vision-description,
.page-about__cta-description {
  font-size: 1.15em;
  color: var(--page-about-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-about__team-image,
.page-about__vision-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

.page-about__faq-item {
  background-color: var(--page-about-card-bg);
  border: 1px solid var(--page-about-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--page-about-text-main);
  background-color: var(--page-about-deep-green);
  border-bottom: 1px solid var(--page-about-divider-color);
  transition: background-color 0.3s ease;
}

.page-about__faq-item[open] > .page-about__faq-question {
  background-color: var(--page-about-primary-color);
}

.page-about__faq-question:hover {
  background-color: var(--page-about-primary-color);
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--page-about-gold-color);
  margin-left: 15px;
  line-height: 1;
}

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

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--page-about-text-secondary);
}

/* --- Responsive Styles --- */

/* All images basic responsive styles */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__story-grid,
  .page-about__why-choose-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__story-image-wrapper,
  .page-about__why-choose-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-about__story-subtitle,
  .page-about__why-choose-subtitle {
    font-size: 1.8em;
  }
  .page-about__hero-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container,
  .page-about__hero-section,
  .page-about__story-section,
  .page-about__values-section,
  .page-about__why-choose-us-section,
  .page-about__team-section,
  .page-about__vision-section,
  .page-about__cta-section,
  .page-about__faq-section,
  .page-about__hero-cta-buttons,
  .page-about__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__hero-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-about__hero-description,
  .page-about__story-content p,
  .page-about__why-choose-content p,
  .page-about__team-description,
  .page-about__vision-description,
  .page-about__cta-description,
  .page-about__value-card p,
  .page-about__faq-answer p {
    font-size: 1em;
  }

  .page-about__hero-cta-buttons,
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-about__story-subtitle,
  .page-about__why-choose-subtitle {
    font-size: 1.5em;
  }

  .page-about__value-card {
    padding: 25px;
  }

  .page-about__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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