.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--bg-color);
  color: var(--text-main-color);
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1; /* Ensure content is above any background effects */
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color);
  margin-bottom: 20px;
  max-width: 90%; /* Prevent overly long titles */
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

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

.page-about__cta-button--secondary {
  background: #0A4B2C;
  color: #F2FFF6;
  border: 2px solid var(--border-color);
}

.page-about__cta-button--secondary:hover {
  background: var(--glow-color);
  color: var(--card-bg-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__section {
  padding: 60px 0;
  background-color: var(--bg-color);
  color: var(--text-main-color);
}

.page-about__section--introduction {
  padding-top: 0;
}

.page-about__dark-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-about__light-bg {
  background-color: var(--bg-color);
  color: var(--text-main-color);
}

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

.page-about__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main-color);
  line-height: 1.3;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-about__text-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-about__text-block p:last-child {
  margin-bottom: 0;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

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

.page-about__card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--text-main-color);
  border: 1px solid var(--divider-color);
}

.page-about__card:hover {
  transform: translateY(-5px);
}

.page-about__card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--glow-color);
}

.page-about__card p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

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

.page-about__value-item {
  background-color: var(--deep-green-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
}

.page-about__value-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-about__value-item p {
  font-size: 0.95em;
  line-height: 1.5;
  color: var(--text-secondary-color);
}

.page-about__timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-about__timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--divider-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.page-about__timeline-item {
  padding: 10px 0;
  position: relative;
  width: 50%;
}

.page-about__timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 30px;
  text-align: right;
}

.page-about__timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 30px;
  text-align: left;
}

.page-about__timeline-date {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--glow-color);
  position: absolute;
  top: 10px;
}

.page-about__timeline-item:nth-child(odd) .page-about__timeline-date {
  right: 100%;
  margin-right: 20px;
}

.page-about__timeline-item:nth-child(even) .page-about__timeline-date {
  left: 100%;
  margin-left: 20px;
}

.page-about__timeline-content {
  background-color: var(--card-bg-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid var(--border-color);
}

.page-about__timeline-content h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-about__timeline-content p {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-about__timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--glow-color);
  border: 4px solid var(--deep-green-color);
  top: 16px;
  border-radius: 50%;
  z-index: 1;
}

.page-about__timeline-item:nth-child(odd)::after {
  right: -8px;
}

.page-about__timeline-item:nth-child(even)::after {
  left: -8px;
}

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

.page-about__commitment-item {
  background-color: var(--deep-green-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
}

.page-about__commitment-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--glow-color);
}

.page-about__commitment-item p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-about__download-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
  max-width: 800px;
}

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

.page-about__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-about__faq-item details {
  width: 100%;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: var(--glow-color);
  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: rgba(var(--glow-color-rgb), 0.1);
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary-color);
  /* For details, browser handles animation, max-height not needed */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-about__content-grid--reverse .page-about__image-block {
    order: -1;
  }
  .page-about__timeline::before {
    left: 20px;
  }
  .page-about__timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
  }
  .page-about__timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 20px;
    text-align: left;
  }
  .page-about__timeline-item:nth-child(even) {
    left: 0;
    padding-left: 50px;
    text-align: left;
  }
  .page-about__timeline-item:nth-child(odd) .page-about__timeline-date {
    left: 0;
    margin-left: 20px;
    right: auto;
  }
  .page-about__timeline-item:nth-child(even) .page-about__timeline-date {
    left: 0;
    margin-left: 20px;
  }
  .page-about__timeline-item::after {
    left: 16px;
  }
  .page-about__timeline-item:nth-child(odd)::after {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-about__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }
  .page-about__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__text-block p {
    font-size: 0.95em;
  }
  .page-about__card-title {
    font-size: 1.4em;
  }
  .page-about__value-title {
    font-size: 1.2em;
  }
  .page-about__timeline-content h3 {
    font-size: 1.1em;
  }
  .page-about__timeline-date {
    font-size: 1.1em;
  }
  .page-about__commitment-title {
    font-size: 1.3em;
  }
  .page-about__download-text {
    font-size: 1em;
  }
  .page-about__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Force responsive for images and containers */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__text-block,
  .page-about__image-block,
  .page-about__values-grid,
  .page-about__value-item,
  .page-about__commitment-grid,
  .page-about__commitment-item,
  .page-about__faq-list,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-about__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-about__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure buttons wrap if multiple */
  .page-about__container--flex {
    flex-wrap: wrap;
    gap: 15px;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Color variables */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --bg-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --glow-color-rgb: 87, 227, 141;
}