.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

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

.page-about__dark-section {
  background-color: var(--primary-color, #0A2463); /* Primary brand color for dark sections */
  color: #ffffff;
  padding: 80px 0;
}

.page-about__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light sections */
  padding: 80px 0;
}

.page-about__hero-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color, #0A2463) 0%, #000000 100%);
  padding: 100px 0;
  padding-top: 10px; /* Specific adjustment for hero section */
}

.page-about__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color, #FFD700);
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: var(--secondary-color, #FFD700);
  color: var(--primary-color, #0A2463);
}

.page-about__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-about__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about__btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-color, #0A2463);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-about__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: inherit; /* Inherit color from parent section */
}

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

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

.page-about__text-block {
  flex: 1;
  font-size: 17px;
  line-height: 1.8;
}

.page-about__text-block p {
  margin-bottom: 20px;
  color: inherit;
}

.page-about__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-about__image--center {
  margin: 40px auto 0 auto;
  display: block;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-about__card {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__card--inverted {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: inherit;
}

.page-about__card p {
  font-size: 16px;
  line-height: 1.7;
  color: inherit;
}

.page-about__value-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-about__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.page-about__value-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color, #0A2463);
}

.page-about__value-item p {
  font-size: 15px;
  color: #555555;
}

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

.page-about__advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.page-about__advantage-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.page-about__advantage-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color, #0A2463);
}

.page-about__advantage-card p {
  font-size: 16px;
  color: #555555;
}

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

.page-about__commitment-item {
  background: #f9f9f9;
  color: #333333;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about__commitment-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color, #0A2463);
}

.page-about__commitment-item p {
  font-size: 15px;
  color: #555555;
}

.page-about__final-cta-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-about__cta-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 40px;
  }
  .page-about__section-title {
    font-size: 32px;
  }
  .page-about__content-wrapper {
    flex-direction: column;
  }
  .page-about__content-wrapper--reversed {
    flex-direction: column;
  }
  .page-about__text-block, .page-about__image-block {
    flex: none;
    width: 100%;
  }
  .page-about__image--center {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px !important; /* Spacing for fixed header on mobile */
  }
  .page-about__hero-section {
    padding: 60px 0;
  }
  .page-about__main-title {
    font-size: 32px;
  }
  .page-about__hero-description {
    font-size: 16px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Ensure buttons don't overflow */
  }
  .page-about__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .page-about__dark-section, .page-about__light-bg {
    padding: 60px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__image {
    border-radius: 8px;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__image--center {
    width: 100%;
    margin: 30px auto 0 auto;
  }
  .page-about__card, .page-about__card--inverted, .page-about__value-item, .page-about__advantage-card, .page-about__commitment-item {
    padding: 20px;
    border-radius: 8px;
  }
  .page-about__card-title, .page-about__value-title, .page-about__advantage-title, .page-about__commitment-title {
    font-size: 20px;
  }
  .page-about__value-icon, .page-about__advantage-icon {
    width: 60px;
    height: 60px;
  }
  .page-about__text-block p {
    font-size: 16px;
  }
  .page-about__hero-description, .page-about__cta-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 28px;
  }
  .page-about__section-title {
    font-size: 24px;
  }
  .page-about__hero-section {
    padding: 40px 0;
  }
  .page-about__dark-section, .page-about__light-bg {
    padding: 40px 0;
  }
  .page-about__cta-buttons {
    gap: 10px;
  }
  .page-about__cta-button {
    font-size: 15px !important;
  }
  .page-about__content-grid, .page-about__advantages-grid, .page-about__commitment-list {
    grid-template-columns: 1fr;
  }
  .page-about__value-icon, .page-about__advantage-icon {
    width: 50px;
    height: 50px;
  }
  .page-about__card-title, .page-about__value-title, .page-about__advantage-title, .page-about__commitment-title {
    font-size: 18px;
  }
  .page-about__text-block p, .page-about__card p, .page-about__value-item p, .page-about__advantage-card p, .page-about__commitment-item p {
    font-size: 14px;
  }
}