/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

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

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

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-about__section--story, .page-about__section--mission {
  background-color: #fff;
}

.page-about__section--values {
  background-color: #f0f0f0;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

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

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

.page-about__paragraph {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__grid--reverse {
  grid-template-areas: "image text";
}

.page-about__grid--reverse .page-about__image-wrapper {
  grid-area: image;
}

.page-about__grid--reverse .page-about__text-content {
  grid-area: text;
}

.page-about__image-wrapper {
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-about__value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: inline-block;
}

.page-about__card-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-about__section--cta {
  background: linear-gradient(45deg, #1E90FF, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn--outline:hover {
  background-color: #FFD700;
  color: #1E90FF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__grid {
    grid-template-columns: 1fr;
  }

  .page-about__grid--reverse {
    grid-template-areas: unset;
  }

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

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

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

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

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

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

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

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

  .page-about__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

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

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

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

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

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