.page-about {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #007BFF, #4da3ff); /* Dark blue to lighter blue */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff; /* Ensure high contrast */
}

.page-about__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0; /* Slightly lighter for subtitle */
}

.page-about__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for titles on light background */
  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; /* Gold accent */
  border-radius: 2px;
}

.page-about__story-section, .page-about__mission-section, .page-about__why-choose-us-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
}

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

.page-about__story-content p, .page-about__why-choose-us-content ul {
  flex: 1;
  min-width: 300px;
  font-size: 1.1em;
  color: #444;
}

.page-about__story-image, .page-about__why-choose-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about__mission-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about__mission-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-about__mission-item p {
  color: #555;
}

.page-about__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-about__why-choose-us-content ul {
  list-style: none;
  padding: 0;
}

.page-about__why-choose-us-content ul li {
  background-color: #e6f2ff; /* Very light blue */
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #007BFF;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
}

.page-about__why-choose-us-content ul li strong {
  color: #0056b3;
}

.page-about__cta-section {
  background: linear-gradient(90deg, #007BFF, #0056b3); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-about__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #333; /* Dark text on gold for contrast */
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  color: #000;
}

.page-about__highlight {
  color: #FFD700; /* Gold highlight for brand name */
}

.page-about__strong-text {
  color: #0056b3; /* Darker blue for strong text in light sections */
  font-weight: bold;
}

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

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

  .page-about__story-content, .page-about__why-choose-us-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__story-image, .page-about__why-choose-image {
    max-width: 100%;
  }

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

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

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

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

  .page-about__mission-item {
    padding: 20px;
  }

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

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