/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: clamp(22px, 3vw, 30px);
  color: #57E38D; /* Glow */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 30px;
}

.page-about__link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__link:hover {
  color: #F2C14E; /* Gold */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body handles header-offset */
  padding-bottom: 60px;
  background-color: #08160F;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

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

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

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

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

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(87, 227, 141, 0.4);
}

/* History & Mission Section */
.page-about__history-mission .page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-about__history-mission .page-about__content-grid--reverse {
  direction: rtl; /* For image-text order */
}

.page-about__history-mission .page-about__content-grid--reverse > * {
  direction: ltr; /* Reset text direction */
}

.page-about__history-mission .page-about__image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-about__history-mission .page-about__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-about__history-mission p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  font-size: 17px;
}

/* Mission & Vision Section */
.page-about__mission-vision {
  background-color: #11271B; /* Card BG */
}

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

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

.page-about__value-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.page-about__value-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about__value-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 17px;
}

/* Core Values Section */
.page-about__core-values .page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-about__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

/* Products Section */
.page-about__products .page-about__section-title {
  color: #F2FFF6; /* Text Main */
}

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

.page-about__product-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-about__product-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-about__product-title {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 700;
  flex-grow: 1;
}

.page-about__product-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  margin-bottom: 20px;
}

.page-about__product-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push to bottom */
  box-sizing: border-box;
}

.page-about__product-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(87, 227, 141, 0.3);
}

/* Social Responsibility Section */
.page-about__social-responsibility .page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__social-responsibility .page-about__image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-about__social-responsibility .page-about__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-about__social-responsibility p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  font-size: 17px;
}

/* Join Us Section */
.page-about__join-us {
  text-align: center;
  background-color: #11271B; /* Card BG */
}

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

.page-about__join-us .page-about__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.page-about__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
}

.page-about__cta-button--secondary {
  background: transparent;
  border: 2px solid #2AD16F; /* Button border */
  color: #2AD16F;
}

.page-about__cta-button--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-about__faq {
  padding-bottom: 80px;
}

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

.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: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  user-select: none;
  list-style: none;
}

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

.page-about__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #F2C14E; /* Gold */
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 15px 20px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__history-mission .page-about__content-grid,
  .page-about__social-responsibility .page-about__content-grid {
    grid-template-columns: 1fr;
    direction: ltr; /* Reset for smaller screens */
  }

  .page-about__history-mission .page-about__content-grid--reverse {
    flex-direction: column-reverse; /* Stack image below text */
  }

  .page-about__history-mission .page-about__content-grid--reverse .page-about__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .page-about__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-about__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-about__main-title {
    font-size: clamp(30px, 8vw, 48px);
    margin-bottom: 15px;
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-about__cta-buttons .page-about__cta-button {
    width: 100%;
  }

  .page-about__value-title {
    font-size: 20px;
  }

  .page-about__feature-title {
    font-size: 18px;
  }

  .page-about__product-title {
    font-size: 18px;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__hero-content,
  .page-about__hero-image-wrapper,
  .page-about__content-grid,
  .page-about__values-grid,
  .page-about__features-grid,
  .page-about__products-grid,
  .page-about__faq-list,
  .page-about__cta-buttons,
  .page-about__product-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-about__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .page-about__faq-answer {
    font-size: 15px;
    padding: 10px 15px;
  }
}