.page-about {
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 40px;
}

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

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-about__hero-content {
  max-width: 900px;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
  max-width: 100%; /* Ensure H1 doesn't overflow on small screens */
}

.page-about__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-about__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about__mission-section,
.page-about__values-section,
.page-about__why-choose-us-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2F6BFF;
  border-radius: 2px;
}

.page-about__section-paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
  color: #1F2D3D;
}

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

.page-about__values-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__values-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #D6E2FF;
}

.page-about__values-item-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-about__values-item-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-about__why-choose-us-section .page-about__section-paragraph {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-about__cta-button--secondary {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  margin-right: 15px;
}

.page-about__contact-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  border: 2px solid #2F6BFF;
  color: #2F6BFF;
  background-color: transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
}

.page-about__contact-button:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__cta-button {
    padding: 12px 24px;
    font-size: 1em;
  }

  .page-about__mission-section,
  .page-about__values-section,
  .page-about__why-choose-us-section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-about__section-paragraph {
    font-size: 0.95em;
  }

  .page-about__image {
    margin: 20px auto;
  }

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

  .page-about__values-item {
    padding: 25px;
  }

  .page-about__values-item-title {
    font-size: 1.2em;
  }

  .page-about__cta-button--secondary,
  .page-about__contact-button {
    margin: 10px 0;
    width: 100%;
    display: block;
  }

  /* Mobile image overflow prevention */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

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

  .page-about__hero-section {
    border-radius: 0;
    margin-bottom: 20px;
  }

  .page-about__container {
    padding: 15px;
  }
}