.page-about {
  background-color: #1A2E44;
  color: #f5f5f5;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section, body handles header offset */
}

.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 60px;
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  object-fit: cover;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-about__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFD700;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-about__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e5e5e5;
}

.page-about__cta-button, .page-about__secondary-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover, .page-about__secondary-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-about__mission-section, .page-about__values-section, .page-about__commitment-section {
  padding: 60px 0;
  text-align: center;
}

.page-about__section-title {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-about__paragraph {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f5f5f5;
}

.page-about__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.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__value-item {
  background-color: #2a415a;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-about__value-heading {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__value-description {
  font-size: 1rem;
  color: #e5e5e5;
}

.page-about__commitment-section {
  background-color: #1A2E44;
  padding-bottom: 80px;
}

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

  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .page-about__section-title {
    font-size: 2rem;
  }

  .page-about__paragraph {
    font-size: 1rem;
    margin-bottom: 30px;
  }

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

  .page-about__image-content {
    max-width: 100%;
    height: auto;
    max-width: 100%; 
    height: auto; 
  }

  .page-about__mission-section img, .page-about__values-section img, .page-about__commitment-section img {
    max-width: 100%;
    height: auto;
  }
  
  .page-about__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__cta-button, .page-about__secondary-cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-about__value-heading {
    font-size: 1.3rem;
  }

  .page-about__value-description {
    font-size: 0.9rem;
  }
}