.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF;
}

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

.page-about__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-about__section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

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

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, body handles main offset */
  margin-bottom: 0;
  background-color: #f0f8ff; /* Light background for hero section */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px 60px;
  box-sizing: border-box;
}

.page-about__main-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  min-width: 150px;
}

.page-about__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-about__btn-primary:hover {
  background-color: #1e87c2;
  border-color: #1e87c2;
}

.page-about__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-about__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c2;
  border-color: #1e87c2;
}

.page-about__content-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

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

.page-about__text-block {
  flex: 1;
  min-width: 0;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-about__text-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-about__text-block li {
  margin-bottom: 8px;
  font-size: 16px;
}

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

.page-about__image-block img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__intro-section .page-about__section-title,
.page-about__why-choose-section .page-about__section-title {
  color: #26A9E0;
}

.page-about__commitment-list li strong,
.page-about__why-list li strong {
  color: #26A9E0;
}

.page-about__dark-section .page-about__text-block p,
.page-about__dark-section .page-about__text-block li {
  color: #ffffff;
}

/* FAQ Styles */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: #f5f5f5;
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

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

/* CTA Section Specific */
.page-about__cta-section {
  background-color: #f0f8ff;
}

.page-about__cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-about__cta-content .page-about__section-title {
  margin-bottom: 20px;
}

.page-about__cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333333;
}

.page-about__cta-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-image {
    max-height: 500px;
  }

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

  .page-about__content-flex {
    flex-direction: column;
    gap: 30px;
  }

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

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

  .page-about__section-title {
    margin-bottom: 30px;
  }

  .page-about__image-block {
    min-width: unset;
  }
}

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

  .page-about__hero-section {
    padding-top: 10px !important;
  }

  .page-about__hero-image {
    max-height: 300px !important;
    margin-bottom: 20px !important;
  }

  .page-about__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__hero-content {
    padding: 0 15px 40px !important;
  }

  .page-about__main-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    margin-bottom: 15px !important;
  }

  .page-about__hero-description {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-about__section {
    padding: 30px 0 !important;
  }

  .page-about__section-title {
    font-size: clamp(24px, 7vw, 30px) !important;
    margin-bottom: 25px !important;
  }

  .page-about__content-flex {
    gap: 20px !important;
  }

  .page-about__text-block p,
  .page-about__text-block li {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

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

  /* FAQ Mobile */
  details.page-about__faq-item summary.page-about__faq-question { padding: 15px !important; }
  .page-about__faq-qtext { font-size: 15px !important; }
  details.page-about__faq-item .page-about__faq-answer { padding: 0 15px 15px !important; }

  .page-about__cta-content p {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }
}