.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text for dark background */
  background-color: #000000; /* Main background */
}

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

.page-about__hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.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: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-about__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-about__story .page-about__container,
.page-about__vision-mission .page-about__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__vision-mission .page-about__container--reversed {
  flex-direction: row-reverse;
}

.page-about__content-block,
.page-about__image-block {
  flex: 1;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-about__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-about__value-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-10px);
  background-color: #2A2A2A;
}

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

.page-about__value-description {
  color: #B0B0B0;
  font-size: 1em;
}

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

.page-about__sub-page-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__sub-page-item:hover {
  transform: translateY(-5px);
  background-color: #2A2A2A;
}

.page-about__sub-page-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-about__sub-page-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__sub-page-title a:hover {
  color: #DC143C;
}

.page-about__sub-page-description {
  color: #B0B0B0;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__cta {
  background-color: #1A1A1A;
  padding: 80px 0;
  text-align: center;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  color: #D0D0D0;
  margin-bottom: 40px;
}

.page-about__btn {
  display: inline-block;
  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, transform 0.3s ease;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #000000;
}

.page-about__btn--primary:hover {
  background-color: #DC143C;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

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

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

  .page-about__hero-subtitle {
    font-size: 1.3em;
  }

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

  .page-about__story .page-about__container,
  .page-about__vision-mission .page-about__container,
  .page-about__vision-mission .page-about__container--reversed {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }

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

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

  .page-about__section {
    padding: 60px 0;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .page-about__hero {
    padding: 60px 0;
  }

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

  .page-about__hero-subtitle {
    font-size: 0.9em;
  }

  .page-about__section {
    padding: 40px 0;
  }

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

  .page-about__value-title {
    font-size: 1.4em;
  }

  .page-about__sub-page-title {
    font-size: 1.2em;
  }
}