/* style/about.css */
.page-about {
  background-color: #08160F;
  color: #F2FFF6;
  overflow-x: hidden;
}
.page-about__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-about__hero-section {
  padding: 10px 0 40px;
  background: linear-gradient(160deg, #08160F 0%, #0A4B2C 100%);
}
.page-about__hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.page-about__hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
  box-shadow: 0 12px 32px rgba(17, 168, 78, 0.25);
}
.page-about__hero-image img {
  display: block;
  width: 100%;
  height: auto;
}
.page-about__hero-content {
  width: 100%;
  text-align: center;
}
.page-about__hero-title {
  color: #F2FFF6;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.3px;
  max-width: 900px;
  margin: 0 auto 16px;
}
.page-about__hero-subtitle {
  color: #A7D9B8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 24px;
}
.page-about__hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.page-about__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 100%;
}
.page-about__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #08160F;
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.35);
}
.page-about__btn--secondary {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}
.page-about__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(87, 227, 141, 0.4);
}
.page-about__mission-section,
.page-about__products-section,
.page-about__values-section,
.page-about__faq-section {
  padding: 56px 0;
}
.page-about__story-section {
  padding: 56px 0;
  background-color: #0A4B2C;
}
.page-about__section-header {
  text-align: center;
  margin-bottom: 36px;
}
.page-about__section-title {
  color: #F2FFF6;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 0 0 12px;
}
.page-about__section-desc {
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.page-about__mission-grid,
.page-about__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-about__mission-card,
.page-about__product-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.page-about__mission-card:hover,
.page-about__product-card:hover {
  transform: translateY(-4px);
  border-color: #57E38D;
}
.page-about__mission-card img,
.page-about__product-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 16px;
}
.page-about__card-title {
  color: #F2FFF6;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.page-about__card-link {
  color: #57E38D;
  text-decoration: none;
}
.page-about__card-link:hover {
  color: #F2C14E;
  text-decoration: underline;
}
.page-about__card-text {
  color: #A7D9B8;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}
.page-about__story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.page-about__story-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}
.page-about__story-image img {
  display: block;
  width: 100%;
  height: auto;
}
.page-about__story-content .page-about__section-title {
  text-align: left;
  margin-bottom: 18px;
}
.page-about__story-text {
  color: #F2FFF6;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 16px;
}
.page-about__story-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.page-about__story-item {
  color: #A7D9B8;
  font-size: 0.98rem;
  line-height: 1.6;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #1E3A2A;
}
.page-about__story-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #57E38D;
  font-weight: 700;
}
.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.page-about__value-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-left: 4px solid #22C768;
  border-radius: 12px;
  padding: 22px 20px;
}
.page-about__value-title {
  color: #F2FFF6;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.page-about__value-text {
  color: #A7D9B8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.page-about__cta-section {
  padding: 56px 0;
  background: linear-gradient(135deg, #0A4B2C 0%, #11271B 100%);
}
.page-about__cta-box {
  background-color: rgba(17, 39, 27, 0.85);
  border: 1px solid #2E7A4E;
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(17, 168, 78, 0.2);
}
.page-about__cta-title {
  color: #F2FFF6;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 14px;
}
.page-about__cta-text {
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 26px;
}
.page-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.page-about__faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-about__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 16px 20px;
}
.page-about__faq-question {
  color: #F2FFF6;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.page-about__faq-question::-webkit-details-marker {
  display: none;
}
.page-about__faq-answer {
  color: #A7D9B8;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 12px 0 0;
}
@media (max-width: 1024px) {
  .page-about__values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about__mission-grid,
  .page-about__products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 10px 0 28px;
  }
  .page-about__hero-container {
    width: 100%;
    padding: 0 16px;
    gap: 18px;
  }
  .page-about__hero-image img,
  .page-about__mission-card img,
  .page-about__product-card img,
  .page-about__story-image img {
    max-width: 100%;
    height: auto;
  }
  .page-about__hero-subtitle {
    font-size: 0.98rem;
  }
  .page-about__hero-actions,
  .page-about__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-about__btn {
    width: 100%;
    text-align: center;
  }
  .page-about__mission-grid,
  .page-about__products-grid,
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-about__story-content .page-about__section-title {
    text-align: center;
  }
  .page-about__section-title {
    font-size: 1.4rem;
  }
  .page-about__cta-box {
    padding: 28px 18px;
  }
  .page-about__cta-title {
    font-size: 1.3rem;
  }
  .page-about__container {
    padding: 0 16px;
  }
  .page-about__mission-section,
  .page-about__story-section,
  .page-about__products-section,
  .page-about__values-section,
  .page-about__cta-section,
  .page-about__faq-section {
    padding: 36px 0;
  }
}