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

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background-color: #f0f8ff; /* Light background for hero */
  color: #1e1765;
}

.page-about__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 30px;
}

.page-about__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
}

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

.page-about__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555555;
}

.page-about__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-about__hero-image {
  flex: 1 1 40%;
  min-width: 280px;
  text-align: center;
}

.page-about__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-about__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b9;
  border-color: #1e87b9;
}

.page-about__intro-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-about__intro-container,
.page-about__mission-vision-container,
.page-about__why-choose-us-container,
.page-about__faq-container,
.page-about__cta-bottom-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.page-about__section-description {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__icon-box {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-about__icon-box-media {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(38, 169, 224, 0.2);
}

.page-about__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-about__icon-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-about__icon-box-text {
  font-size: 0.95rem;
  color: #666666;
}

.page-about__mission-vision-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background for this section */
  color: #ffffff; /* Light text for dark background */
}

.page-about__mission-vision-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.page-about__mission-block,
.page-about__vision-block {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

.page-about__block-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__block-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #e0f2f7;
}

.page-about__mission-image,
.page-about__vision-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__why-choose-us-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-about__why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px 30px;
}

.page-about__why-item {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: #555555;
}

.page-about__why-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-weight: bold;
}

.page-about__why-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.page-about__faq-section {
  padding: 60px 0;
  background-color: #f0f8ff; /* Light background for FAQ */
}

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

.page-about__faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-about__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  list-style: none;
  outline: none;
}

.page-about__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-about__faq-item summary:hover {
  background-color: #f5f5f5;
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
}

.page-about__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #666666;
}

.page-about__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-about__cta-bottom-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background for CTA */
  color: #ffffff;
  text-align: center;
}

.page-about__cta-bottom-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-about__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .page-about__hero-content,
  .page-about__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    text-align: center;
  }

  .page-about__hero-description {
    font-size: 1rem;
    text-align: center;
  }

  .page-about__hero-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;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-about__intro-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__faq-section,
  .page-about__cta-bottom-section {
    padding: 40px 0;
  }

  .page-about__intro-container,
  .page-about__mission-vision-container,
  .page-about__why-choose-us-container,
  .page-about__faq-container,
  .page-about__cta-bottom-container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__section-title,
  .page-about__block-title,
  .page-about__cta-bottom-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    text-align: center;
  }

  .page-about__section-description,
  .page-about__block-text,
  .page-about__cta-bottom-description {
    font-size: 0.95rem;
    text-align: center;
  }

  .page-about__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__icon-box-media {
    width: 180px;
    height: 180px;
  }

  .page-about__icon-box-title {
    font-size: 1.3rem;
  }

  .page-about__mission-vision-container {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__mission-block,
  .page-about__vision-block {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-about__why-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-about__why-item {
    font-size: 0.95rem;
  }

  .page-about__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-about__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

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

  /* General image responsiveness for mobile */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-side-image,
  .page-about__mission-image,
  .page-about__vision-image,
  .page-about__why-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}