.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-about__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  background-color: #08160F;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

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

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: none;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-about__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F;
  transform: translateY(-2px);
}

.page-about__values-section, 
.page-about__products-section, 
.page-about__promotions-section, 
.page-about__responsibility-section, 
.page-about__faq-section, 
.page-about__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.page-about__section-intro {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 60px auto;
}

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

.page-about__value-card, 
.page-about__product-card, 
.page-about__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  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__value-card:hover, 
.page-about__product-card:hover, 
.page-about__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__value-icon, 
.page-about__product-image, 
.page-about__promo-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__value-title, 
.page-about__product-title, 
.page-about__promo-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-about__product-title a, 
.page-about__promo-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-about__product-title a:hover, 
.page-about__promo-title a:hover {
  color: #F2C14E; /* Gold */
}

.page-about__value-description, 
.page-about__product-description, 
.page-about__promo-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__responsibility-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  text-align: left;
  align-items: center;
  margin-top: 40px;
}

.page-about__responsibility-text {
  flex: 1;
}

.page-about__responsibility-image-wrapper {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-about__subtitle {
  font-size: 1.6em;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__responsibility-text p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

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

.page-about__faq-item[open] {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-color: #57E38D; /* Glow */
}

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

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

.page-about__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

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

.page-about__faq-answer p {
  margin: 0;
}

@media (max-width: 992px) {
  .page-about__responsibility-content {
    flex-direction: column;
  }
  .page-about__responsibility-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 10px 15px;
  }

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

  .page-about__description {
    font-size: 1em;
  }

  .page-about__cta-button {
    width: 100% !important;
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__section-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }

  .page-about__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-about__values-section, 
  .page-about__products-section, 
  .page-about__promotions-section, 
  .page-about__responsibility-section, 
  .page-about__faq-section, 
.page-about__cta-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__values-grid, 
  .page-about__products-grid, 
  .page-about__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__value-card, 
  .page-about__product-card, 
  .page-about__promo-card {
    padding: 20px;
  }

  .page-about__value-icon, 
  .page-about__product-image, 
  .page-about__promo-image,
  .page-about__hero-image,
  .page-about__responsibility-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__responsibility-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-about__responsibility-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-about__subtitle {
    font-size: 1.4em;
  }

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

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}