.page-about {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for readability */
  border-radius: 10px;
  margin-top: -150px; /* Overlap image slightly for visual appeal */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
}

.page-about__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D;
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-about__btn-secondary {
  background-color: #ffffff; /* Card BG */
  color: #2F6BFF; /* Primary Color */
  border: 2px solid #2F6BFF; /* Primary Color */
}

.page-about__btn-secondary:hover {
  background-color: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-about__section {
  padding: 60px 0;
}

.page-about__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-about__section-title--light {
  color: #ffffff;
}

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

.page-about__card {
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #D6E2FF; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF; /* Primary Color */
}

.page-about__card-title--light {
  color: #ffffff;
}

.page-about__text-block {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-about__text-block--light {
  color: #f0f0f0;
}

.page-about__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: 40px;
}

.page-about__value-item {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  border: 1px solid #D6E2FF;
}

.page-about__value-icon {
  width: 100%;
  max-width: 250px; /* Ensure icon is not too large */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__value-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2F6BFF;
}

.page-about__feature-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.page-about__feature-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 30px;
  border: 1px solid #D6E2FF;
}

.page-about__feature-card--reverse {
  flex-direction: row-reverse;
}

.page-about__feature-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure image is not too small */
}

.page-about__feature-content {
  width: 50%;
  padding: 20px;
}

.page-about__feature-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-about__description-text {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #1F2D3D;
}

.page-about__description-text--light {
  color: #f0f0f0;
}

.page-about__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-about__dark-section {
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-about__card--dark {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-about__history-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-left: 20px;
  margin-top: 40px;
}

.page-about__history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #D6E2FF; /* Border */
  border-radius: 2px;
}

.page-about__timeline-item {
  position: relative;
  padding-left: 30px;
}

.page-about__timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: #2F6BFF; /* Primary Color */
  border-radius: 50%;
  border: 4px solid #F4F7FB; /* Background */
  box-shadow: 0 0 0 2px #A5C4FF; /* Glow */
}

.page-about__timeline-year {
  font-size: 1.6em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 5px;
}

.page-about__future-vision {
  text-align: center;
  margin-top: 60px;
  font-style: italic;
  font-size: 1.1em;
}

.page-about__faq-list {
  margin-top: 40px;
}

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

.page-about__faq-item[open] {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  background-color: #fcfdff;
  border-bottom: 1px solid transparent; /* To be overridden when open */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-about__faq-item[open] > .page-about__faq-question {
  background-color: #eaf1ff; /* Light blue when open */
  border-bottom: 1px solid #D6E2FF;
  color: #2F6BFF;
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  color: #2F6BFF;
}

.page-about__faq-answer {
  padding: 0 20px 20px;
  color: #1F2D3D;
}

.page-about__faq-answer .page-about__text-block {
  margin-bottom: 15px;
}

.page-about__faq-answer .page-about__btn-primary {
  margin-top: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__main-title {
    font-size: 2.2em;
  }

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

  .page-about__feature-card {
    flex-direction: column;
    text-align: center;
  }

  .page-about__feature-card--reverse {
    flex-direction: column;
  }

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

  .page-about__feature-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    margin-top: -80px; /* Adjust overlap for mobile */
    padding: 20px;
  }

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

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

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-about__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

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

  .page-about__card {
    padding: 20px;
  }

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

  .page-about__value-item {
    padding: 15px;
  }

  .page-about__feature-card {
    padding: 20px;
  }

  .page-about__feature-title {
    font-size: 1.5em;
  }

  .page-about__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__history-timeline {
    padding-left: 15px;
  }

  .page-about__timeline-item::before {
    left: -10px;
  }

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

  .page-about__faq-answer {
    padding: 0 15px 15px;
  }

  /* Ensure all image containers are responsive */
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__values-list,
  .page-about__value-item,
  .page-about__feature-grid,
  .page-about__feature-card,
  .page-about__history-timeline,
  .page-about__faq-list,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  /* Specific padding for main content sections on mobile */
  .page-about__hero-section,
  .page-about__mission-vision,
  .page-about__core-values,
  .page-about__why-choose,
  .page-about__our-commitment,
  .page-about__history-future,
  .page-about__faq-section,
  .page-about__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure no filter on images */
.page-about img {
  filter: none !important;
}