.page-about {
  padding-top: 10px; /* Small top padding, main offset handled by body */
  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;
  margin-bottom: 40px;
  background-color: #F4F7FB;
  padding: 20px 0;
}

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

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

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

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

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

.page-about__hero-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-about__hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-about__section {
  padding: 40px 0;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__section-title {
  font-size: 2.2rem;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.page-about__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-about__paragraph {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-about__image {
  flex: 1;
  min-width: 200px; /* Minimum size requirement */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: auto;
}

.page-about__image--right {
  margin-left: 30px;
}

.page-about__image--left {
  margin-right: 30px;
}

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

.page-about__commitment-item {
  background-color: #F4F7FB;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease;
}

.page-about__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.1);
}

.page-about__commitment-heading {
  font-size: 1.4rem;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__commitment-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #D6E2FF;
}

.page-about__cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-about__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-about__image--right,
  .page-about__image--left {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .page-about__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-about__section-title {
    font-size: 1.8rem;
  }
  .page-about__hero-description,
  .page-about__paragraph,
  .page-about__commitment-text {
    font-size: 0.9rem;
  }
  .page-about__hero-button,
  .page-about__cta-button {
    padding: 10px 25px;
    font-size: 1rem;
  }
  .page-about__commitment-heading {
    font-size: 1.2rem;
  }
  .page-about__commitment-list {
    grid-template-columns: 1fr;
  }

  /* Ensure images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
  .page-about__container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-about__section-title {
    font-size: 1.6rem;
  }
  .page-about__hero-description {
    font-size: 0.85rem;
  }
}