.page-about {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__hero-title {
  font-size: 3.5rem;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-about__button--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-about__button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-about__button--tertiary {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: 2px solid rgba(255, 215, 0, 0.5);
}

.page-about__button--tertiary:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block; /* Ensure no extra space below image */
}

.page-about__section-title {
  font-size: 2.8rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  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: #FFD700;
  border-radius: 2px;
}

.page-about__subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: -30px auto 60px auto;
  line-height: 1.6;
}

.page-about__mission-vision-section,
.page-about__why-choose-us-section,
.page-about__cta-section,
.page-about__contact-section,
.page-about__legal-section {
  padding: 80px 0;
  background-color: #000000;
}

.page-about__mission-vision-section {
  background-color: #1a1a1a;
}

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-about__card {
  background-color: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__card-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: left;
}

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

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

.page-about__feature-item {
  background-color: rgba(255, 215, 0, 0.03);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__feature-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-about__cta-section {
  background: linear-gradient(135deg, #0a0a0a, #333333);
  text-align: center;
}

.page-about__cta-title {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__cta-description {
  font-size: 1.3rem;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-about__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-about__contact-text {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.page-about__contact-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__contact-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-about__legal-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-about__legal-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.page-about__legal-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-about__copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #888888;
  margin-top: 50px;
}

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

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

  .page-about__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 120px); /* Ensure mobile also respects offset */
  }
  .page-about__hero-section {
    padding: 60px 20px;
  }

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

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

  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 100%;
    max-width: 300px;
  }

  .page-about__hero-image-wrapper {
    display: none; /* Hide hero background image on smaller screens if too distracting */
  }

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

  .page-about__subtitle {
    font-size: 1rem;
    margin-top: -20px;
    margin-bottom: 40px;
  }

  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__cta-section,
  .page-about__contact-section,
  .page-about__legal-section {
    padding: 60px 0;
  }

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

  .page-about__card {
    padding: 25px;
  }

  .page-about__card-title {
    font-size: 1.5rem;
  }

  .page-about__card-text {
    font-size: 1rem;
  }

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

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

  .page-about__feature-title {
    font-size: 1.4rem;
  }

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

  .page-about__cta-description {
    font-size: 1.1rem;
  }

  .page-about__legal-links {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile content area images must be responsive */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-about__cta-title {
    font-size: 1.8rem;
  }

  .page-about__button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}