.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-green);
  text-align: center;
}

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

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

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main);
}

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

.page-about__intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-about__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-about__btn-secondary {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.page-about__btn-secondary:hover {
  background: var(--border-color);
  color: var(--text-main);
  transform: translateY(-2px);
}

.page-about__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}

.page-about__section-description {
  font-size: 1.05em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
}

.page-about__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-about__grid-three-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

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

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-about__value-icon {
  width: 100%; /* Ensure full width within container */
  max-width: 200px; /* Max width for the icon */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-about__story-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 40px;
}

.page-about__story-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--divider);
  transform: translateX(-50%);
}

.page-about__timeline-item {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 20px 0;
  text-align: left;
}

.page-about__timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--gold);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 3px solid var(--deep-green);
}

.page-about__timeline-year {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-about__timeline-description {
  font-size: 1em;
  color: var(--text-secondary);
}

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

.page-about__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-about__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-about__cta-section {
  background-color: var(--deep-green);
  padding: 60px 20px;
}

.page-about__cta-box {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.page-about__cta-box .page-about__section-title {
  color: var(--gold);
}

.page-about__cta-box .page-about__section-description {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-about__cta-buttons--centered {
  margin-top: 30px;
}

/* Color Scheme Application */
.page-about__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
}

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

.page-about p {
  color: var(--text-secondary);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-about__grid-two-cols {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__grid-three-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-about__story-timeline::before {
    left: 50%;
  }
  .page-about__timeline-item {
    width: 45%;
  }
  .page-about__timeline-item:nth-child(odd) {
    text-align: right;
    left: -2.5%; /* Adjust for marker */
  }
  .page-about__timeline-item:nth-child(even) {
    text-align: left;
    left: 52.5%; /* Adjust for marker */
  }
  .page-about__timeline-item:nth-child(odd)::before {
    left: calc(100% + 25px);
    transform: translate(-50%, -50%);
  }
  .page-about__timeline-item:nth-child(even)::before {
    left: -25px;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }

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

  .page-about__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-about__grid-two-cols,
  .page-about__grid-three-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__card {
    padding: 25px;
  }

  .page-about__card-title {
    font-size: 1.3em;
  }

  .page-about__value-icon {
    max-width: 150px;
  }

  .page-about__story-timeline::before {
    left: 50%;
  }

  .page-about__timeline-item {
    text-align: center;
    padding: 20px 0;
  }

  .page-about__timeline-item::before {
    left: 50%;
  }

  .page-about__feature-image {
    max-width: 100%;
  }

  .page-about__cta-box {
    padding: 30px;
  }

  /* Image responsiveness */
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-image-wrapper,
  .page-about__value-item,
  .page-about__feature-item,
  .page-about__cta-box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-about__hero-section,
  .page-about__mission-vision,
  .page-about__values-commitment,
  .page-about__our-story,
  .page-about__why-choose,
  .page-about__cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-about__hero-image-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0;
  }

  .page-about__hero-image {
    border-radius: 0;
  }
}