.page-about__intro-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  color: #ffffff;
  background: linear-gradient(135deg, #26A9E0 0%, #1a7fb3 100%); /* Slightly darker gradient for better contrast */
}

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

.page-about__main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-about__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f8ff;
}

.page-about__image-wrapper {
  margin-bottom: 30px;
}

.page-about__hero-image,
.page-about__content-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-about__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-about__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-about__btn-primary:hover {
  background: #d66f06;
  border-color: #d66f06;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn-secondary:hover {
  background: #f0f8ff;
  color: #1a7fb3;
  border-color: #1a7fb3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-about__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0;
}

.page-about__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-about__text-block p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333333;
}

.page-about__light-bg {
  background: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-about__dark-bg {
  background: #26A9E0;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__dark-bg .page-about__section-title,
.page-about__dark-bg .page-about__sub-title {
  color: #ffffff;
}

.page-about__dark-bg .page-about__text-block p {
  color: #f0f8ff;
}

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

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

.page-about__advantage-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  text-align: left;
}

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

.page-about__advantage-card .page-about__card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-about__advantage-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.page-about__commitment-section .page-about__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.page-about__team-section .page-about__description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-about__join-us-section .page-about__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__main-title {
    font-size: 36px;
  }
  .page-about__section-title {
    font-size: 30px;
  }
  .page-about__sub-title {
    font-size: 22px;
  }
  .page-about__mission-vision-section .page-about__content-grid,
  .page-about__commitment-section .page-about__content-grid {
    grid-template-columns: 1fr;
  }
  .page-about__image-wrapper {
    order: -1; /* Move image above text blocks on smaller screens */
    margin-bottom: 30px;
  }
  .page-about__advantage-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-about__intro-section,
  .page-about__light-bg,
  .page-about__dark-bg {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  
  .page-about__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-about__description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-about__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 20px;
  }
  .page-about__text-block p {
    font-size: 15px;
  }
  .page-about__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__hero-image,
  .page-about__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__advantage-card {
    padding: 20px;
  }
}

/* Global image styles to prevent filter usage */
.page-about img {
  filter: none !important;
}