.page-about {
  font-family: Arial, sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

.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-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

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

.page-about__hero-content {
  padding: 0 20px;
  max-width: 900px;
  width: 100%; /* Ensure content takes full width within max-width */
}

.page-about__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  /* No fixed font-size, relying on weight/line-height for hierarchy */
}

.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: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-about__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #1F2D3D;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-about__introduction-section,
.page-about__values-section,
.page-about__why-choose-us-section,
.page-about__cta-section,
.page-about__contact-info-section {
  padding: 60px 0;
}

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

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

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

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

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

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

.page-about__value-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__value-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-about__why-choose-us-section {
  background-color: #F4F7FB;
}

.page-about__reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-about__reason-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-about__reason-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-about__cta-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-about__cta-section .page-about__section-title {
  color: #FFFFFF;
}

.page-about__cta-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0EFFF;
}

.page-about__contact-info-section {
  background-color: #F4F7FB;
  text-align: center;
  padding-bottom: 80px;
}

.page-about__link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__link:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

.page-about__copyright {
  font-size: 0.9em;
  color: #1F2D3D;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 30px;
  }

  .page-about__main-title {
    font-size: 2em;
  }

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

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

  .page-about__introduction-section,
  .page-about__values-section,
  .page-about__why-choose-us-section,
  .page-about__cta-section,
  .page-about__contact-info-section {
    padding: 40px 0;
  }

  .page-about__values-grid,
  .page-about__reason-list {
    grid-template-columns: 1fr;
  }

  .page-about__value-card,
  .page-about__reason-item {
    padding: 25px;
  }

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

  .page-about__reason-title {
    font-size: 1.1em;
  }

  .page-about__cta-text {
    font-size: 1em;
  }

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

  .page-about__value-icon {
    width: 200px;
    height: auto;
  }
}

/* Ensure no content area images are smaller than 200px */
.page-about img:not(.page-about__hero-image) {
  min-width: 200px;
  min-height: 200px;
  width: auto;
  height: auto;
}

/* Specific rule to override potential smaller defaults for non-hero images */
.page-about__value-icon {
    width: 200px; /* Explicitly set to minimum allowed width */
    height: 150px; /* Explicitly set to minimum allowed height for aspect, will be auto on mobile */
    object-fit: contain;
}

@media (max-width: 768px) {
  .page-about__value-icon {
    width: 200px; /* Ensure it's still at least 200px wide on mobile */
    height: auto;
  }
}