.page-about {
  color: #333333; /* Default text color for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold to Red gradient for a luxurious feel */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 1;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 0;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

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

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */\  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
  background-color: #e6c200; /* Darker Gold */
  color: #6a0000; /* Darker Red */
}

.page-about__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-about__story-section, .page-about__mission-section, .page-about__platform-section, .page-about__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-about__story-section {
  background-color: #f8f8f8;
}

.page-about__mission-section {
  background-color: #ffffff;
}

.page-about__platform-section {
  background-color: #f8f8f8;
}

.page-about__cta-section {
  background: linear-gradient(45deg, #8B0000, #FFD700); /* Red to Gold gradient */
  color: #ffffff;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

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

.page-about__story-section .page-about__section-title {
  color: #8B0000;
}

.page-about__mission-section .page-about__section-title {
  color: #8B0000;
}

.page-about__platform-section .page-about__section-title {
  color: #8B0000;
}

.page-about__paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__story-image {
  width: 800px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

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

.page-about__mission-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  border-top: 5px solid #FFD700; /* Gold accent */
}

.page-about__card-title {
  font-size: 1.5em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
}

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

.page-about__link-button {
  display: inline-block;
  margin-top: 30px;
  color: #FFD700; /* Gold */
  background-color: #8B0000; /* Deep Red */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__link-button:hover {
  background-color: #6a0000; /* Darker Red */
  color: #e6c200; /* Darker Gold */
}

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

.page-about__advantage-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #8B0000; /* Red accent */
}

.page-about__advantage-icon {
  width: 400px;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__advantage-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  background-color: #8B0000; /* Deep Red background for title */
  padding: 10px 0;
  border-radius: 5px;
}

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

.page-about__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
  border-radius: 8px;
}

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

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

  .page-about__cta-title {
    font-size: 2.2em;
  }

  .page-about__story-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 450px;
  }

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

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

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

  .page-about__paragraph {
    font-size: 0.95em;
  }

  .page-about__mission-grid, .page-about__advantages-grid {
    grid-template-columns: 1fr;
  }

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

  .page-about__cta-text {
    font-size: 1em;
  }

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

  /* Ensure content images are responsive and do not overflow */
  .page-about img {
    max-width: 100%;
    height: auto;
  }

  .page-about__story-image, .page-about__advantage-icon {
    width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
}

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

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

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