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

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

.page-about__hero {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.page-about__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

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

.page-about__button {
  display: inline-block;
  background-color: #fff;
  color: #FF4500;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__button:hover {
  background-color: #f0f0f0;
  color: #cc3700;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about__section {
  padding: 80px 0;
  background-color: #f9f9f9;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.page-about__section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-about__section:nth-of-type(even) {
  background-color: #fff;
}

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

.page-about__story-content, .page-about__why-choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__story-content .page-about__text-content, .page-about__why-choose-content .page-about__text-content {
  flex: 1;
  min-width: 300px;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-about__story p, .page-about__mission-vision p, .page-about__why-choose p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

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

.page-about__mv-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FF4500;
}

.page-about__mv-title {
  font-size: 1.8em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__features-list {
  list-style: none;
  padding: 0;
}

.page-about__features-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%231E90FF"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-about__features-list li strong {
  color: #FF4500;
}

.page-about__features-list a {
  color: #1E90FF;
  text-decoration: underline;
}

.page-about__features-list a:hover {
  color: #007bff;
}

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

.page-about__cta .page-about__section-title {
  color: #fff;
}

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

.page-about__cta-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.page-about__cta-text a:hover {
  color: #f0f0f0;
}

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

.page-about__button--primary {
  background-color: #fff;
  color: #FF4500;
  border-color: #fff;
}

.page-about__button--primary:hover {
  background-color: #f0f0f0;
  color: #cc3700;
}

.page-about__button--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-about__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__title {
    font-size: 2.5em;
  }

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

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

  .page-about__story-content, .page-about__why-choose-content {
    flex-direction: column;
  }

  .page-about__story-content .page-about__image-wrapper, .page-about__why-choose-content .page-about__image-wrapper {
    order: -1; /* Image first on mobile */
  }

  .page-about__cta-buttons {
    flex-direction: column;
  }

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

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

  .page-about__subtitle {
    font-size: 1em;
  }

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

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

  .page-about__button {
    padding: 12px 25px;
  }
}