/* style/about.css */

/* Base styles for the about page */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F2FFF6; /* Text Main */\  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.5);
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-about__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
}

.page-about__tagline {
  font-size: clamp(1.1em, 2vw, 1.4em);
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Button General */
.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  margin-left: 20px;
}

.page-about__btn-secondary:hover {
  background-color: #57E38D; /* Glow */
  color: #08160F; /* Background */
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-about__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Feature Cards / Product Cards / Advantage Cards */
.page-about__features-grid,
.page-about__product-grid,
.page-about__advantage-grid,
.page-about__team-grid,
.page-about__contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about__feature-card,
.page-about__product-card,
.page-about__advantage-card,
.page-about__team-member,
.page-about__contact-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__feature-card:hover,
.page-about__product-card:hover,
.page-about__advantage-card:hover,
.page-about__team-member:hover,
.page-about__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.4);
}

.page-about__feature-card img,
.page-about__product-card img,
.page-about__advantage-card img,
.page-about__team-member img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum image size */
  min-width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about__card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-about__card-title a:hover {
  color: #57E38D; /* Glow */
}

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

/* Team Section */
.page-about__team-member img {
  border-radius: 50%;
  
  
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #57E38D; /* Glow */
}

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

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

.page-about__culture-statement {
  margin-top: 50px;
  font-style: italic;
  color: #A7D9B8; /* Text Secondary */
}

/* Contact Section */
.page-about__contact-card .page-about__cta-button {
  margin-top: 20px;
  margin-left: 0; /* Remove margin for single button */
}

.page-about__note {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 40px;
}

/* FAQ Section */
.page-about__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* For details/summary */
}

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

.page-about__faq-question:hover {
  background-color: #13994A;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: none;
}

.page-about__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion Section */
.page-about__conclusion-section .page-about__cta-button {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
  .page-about__main-title {
    font-size: clamp(2em, 5vw, 3.2em);
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-about__container {
    padding: 0 15px;
  }

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

  .page-about__hero-content {
    padding: 15px;
  }

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

  .page-about__tagline {
    font-size: clamp(1em, 4vw, 1.2em);
  }

  .page-about__cta-button {
    width: 100% !important;
    margin: 0 !important; /* Reset margin for mobile */
    margin-bottom: 15px !important; /* Add space between stacked buttons */
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-about__btn-secondary {
    margin-left: 0 !important;
  }

  .page-about__cta-group {
    flex-direction: column;
    gap: 0; /* Gap handled by margin-bottom on buttons */
  }

  .page-about__features-grid,
  .page-about__product-grid,
  .page-about__advantage-grid,
  .page-about__team-grid,
  .page-about__contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-about__feature-card,
  .page-about__product-card,
  .page-about__advantage-card,
  .page-about__team-member,
  .page-about__contact-card {
    padding: 20px;
  }

  .page-about__feature-card img,
  .page-about__product-card img,
  .page-about__advantage-card img,
  .page-about__team-member img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset !important; /* Allow smaller images if needed for layout, but still >=200px */
    min-height: 200px !important;
  }

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

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__introduction-section,
  .page-about__products-section,
  .page-about__why-choose-us-section,
  .page-about__team-section,
  .page-about__contact-section,
  .page-about__faq-section,
  .page-about__conclusion-section,
  .page-about__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-about__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-about__video-section {
    padding-top: 10px !important;
  }

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

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