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

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

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #D6E2FF;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
  margin-bottom: 20px;
}

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

.page-about__hero-content {
  max-width: 900px;
  padding: 0 15px 40px;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 15px;
  /* clamp for responsive font size without fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-about__lead-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-about__text-block p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-about__text-block strong {
  color: #000000;
}

.page-about__image-wrapper {
  text-align: center;
}

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

.page-about__values-section {
  background-color: #F4F7FB;
}

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

.page-about__value-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__value-item h3 {
  font-size: 1.5rem;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__value-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-about__contact-cta {
  background-color: #FFFFFF;
  text-align: center;
  border-top: 1px solid #D6E2FF;
}

.page-about__contact-content {
  max-width: 800px;
}

.page-about__contact-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-about__cta-button--secondary {
  background: #6FA3FF;
}

.page-about__cta-button--secondary:hover {
  background: #2F6BFF;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-about__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__content-grid .page-about__image-wrapper {
    order: 2; /* Image on the right for desktop */
  }
  .page-about__content-grid .page-about__text-block {
    order: 1; /* Text on the left for desktop */
  }
  .page-about__content-section:nth-of-type(2) .page-about__content-grid .page-about__image-wrapper {
    order: 1; /* For alternating layout if more sections */
  }
  .page-about__content-section:nth-of-type(2) .page-about__content-grid .page-about__text-block {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    padding: 0 15px 30px;
  }
  .page-about__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-about__lead-text {
    font-size: 1rem;
  }
  .page-about__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-about__value-item h3 {
    font-size: 1.3rem;
  }
  .page-about__content-image {
    max-width: 100%; /* Ensure images don't overflow on mobile */
    height: auto;
  }
  .page-about__hero-image {
    max-width: 100%; /* Ensure hero image doesn't overflow */
    height: auto;
  }
}

/* Ensure all content area images are at least 200px */
.page-about__content-section img, .page-about__hero-section img {
  min-width: 200px;
  min-height: 200px;
}