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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small padding-top to avoid double header offset */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-about__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

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

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__container--reverse {
  flex-direction: row-reverse;
}

.page-about__content-block {
  flex: 1;
  min-width: 300px;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-about__section-title {
  font-size: 2.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: bold;
  border-left: 5px solid #2AD16F;
  padding-left: 15px;
}

.page-about__section-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-about__link-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 5px;
  font-weight: normal;
  transition: background 0.3s ease;
}

.page-about__link-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-about__values-list {
  list-style: none;
  padding: 0;
}

.page-about__values-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__values-heading {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-about__values-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__advantage-list {
  list-style: none;
  padding: 0;
}

.page-about__advantage-item {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-about__advantage-item::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-about__cta-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__container {
    flex-direction: column;
  }

  .page-about__container--reverse {
    flex-direction: column;
  }

  .page-about__hero-content {
    padding: 0 10px;
  }

  .page-about__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-about__section-title {
    font-size: 1.8rem;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }

  .page-about__values-item, .page-about__advantage-item {
    padding: 15px;
  }

  .page-about__cta-title {
    font-size: 2rem;
  }

  .page-about__hero-image-wrapper img,
  .page-about__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section,
  .page-about__section,
  .page-about__cta-section {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.2rem, 8vw, 1.75rem);
  }

  .page-about__intro-text {
    font-size: 0.95rem;
  }

  .page-about__section-title {
    font-size: 1.5rem;
  }

  .page-about__cta-title {
    font-size: 1.8rem;
  }
}