.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for separation */
  background-color: #08160F;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

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

.page-about__main-title {
  color: #F2FFF6;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
  color: #A7D9B8;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-about__cta-button--bottom {
  margin-top: 40px;
}

.page-about__section {
  padding: 60px 20px;
  background-color: #08160F;
}

.page-about__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-about__content-block {
  font-size: 1rem;
  line-height: 1.7;
  color: #F2FFF6;
}

.page-about__content-block p {
  margin-bottom: 20px;
}

.page-about__sub-title {
  color: #57E38D; /* Glow */
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-about__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-about__list-item {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-about__list-item strong {
  color: #F2FFF6;
}

.page-about__image-wrapper {
  margin: 40px 0;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  box-sizing: border-box;
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__faq-section {
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6;
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none;
}

.page-about__faq-item[open] > .page-about__faq-question {
  background-color: #1E3A2A; /* Divider */
}

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.6;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-about__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-about__sub-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
}

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

  .page-about__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-about__main-title {
    font-size: 2rem !important;
    margin-bottom: 15px;
  }

  .page-about__subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 25px;
  }

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

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

  .page-about__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }

  .page-about__content-block {
    font-size: 0.95rem;
  }

  .page-about__sub-title {
    font-size: 1.4rem !important;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-about__image-wrapper {
    margin: 30px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-about__faq-section {
    padding: 40px 15px;
  }

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

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

  .page-about__list {
    margin-left: 20px;
  }

  .page-about__list-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 1.8rem !important;
  }

  .page-about__section-title {
    font-size: 1.6rem !important;
  }

  .page-about__sub-title {
    font-size: 1.2rem !important;
  }

  .page-about__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}