.page-about {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-about__hero-section {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text contrast */
  color: #FFFFFF;
}

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background-color: #FFD700; /* Slightly brighter yellow */
  transform: translateY(-2px);
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let text stand out */
  z-index: 1;
}

.page-about__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-about__content-section:nth-of-type(even) {
  background-color: #F8F8F8;
}

.page-about__content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Login button color */
  border-radius: 2px;
}

.page-about__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__image-inline {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__image-inline--right {
  float: right;
  margin-left: 30px;
  max-width: 45%;
}

.page-about__image-inline--left {
  float: left;
  margin-right: 30px;
  max-width: 45%;
}

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

.page-about__feature-item {
  background-color: #FDFDFD;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__feature-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-about__feature-title {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin-bottom: 10px;
}

.page-about__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-about__cta-final {
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-about__cta-container .page-about__section-title {
  color: #FCBC45; /* Login button color */
}

.page-about__cta-container .page-about__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 1.2em;
}

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.25em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }

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

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

  .page-about__text-block {
    font-size: 1em;
  }

  .page-about__image-inline--right,
  .page-about__image-inline--left {
    float: none;
    margin: 0 auto 30px auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
  }

  .page-about__hero-title {
    font-size: 2.5em;
  }

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

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-about__content-section {
    padding: 40px 15px;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

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

  .page-about__feature-item {
    padding: 25px;
  }

  .page-about__cta-final {
    padding: 60px 15px;
  }

  .page-about__cta-container .page-about__text-block {
    font-size: 1.1em;
  }

  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Ensure all content images within .page-about are responsive and don't overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }

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

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__feature-title {
    font-size: 1.3em;
  }
}{
    width: 90%;
  }
  /* Mobile content image constraint */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2rem;
  }
  .page-about__hero-description {
    font-size: 1rem;
  }
  .page-about__button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-about__section-title {
    font-size: 1.8rem;
  }
  .page-about__value-item {
    font-size: 1rem;
    padding-left: 25px;
  }
  .page-about__value-item::before {
    font-size: 0.9rem;
  }
  .page-about__feature-title {
    font-size: 1.3rem;
  }
  .page-about__feature-description {
    font-size: 0.9rem;
  }
}