.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, #1A2B5B, #2C428C);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.2;
  z-index: 0;
}

.page-about__hero-image {
  width: 400px; /* Adjust size as needed */
  height: auto;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-subtitle {
    font-size: 1.2em;
  }
  .page-about__hero-image-wrapper {
    display: none;
  }
}

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

.page-about__section:nth-child(even) {
  background-color: #F8F8F8;
}

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

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

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

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

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
}

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

.page-about__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
}

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

.page-about__btn--secondary:hover {
  background-color: #1A2B5B;
  color: #FFFFFF;
}

.page-about__section--mission-vision .page-about__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__text-content {
  flex: 1;
}

.page-about__image-content {
  flex: 1;
  text-align: center;
}

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

@media (max-width: 992px) {
  .page-about__section--mission-vision .page-about__container {
    flex-direction: column;
  }
  .page-about__image-content {
    margin-top: 30px;
  }
}

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

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

.page-about__value-item:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-about__value-title {
  font-size: 1.4em;
  color: #1A2B5B;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 0.95em;
  color: #555;
}

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

.page-about__why-choose-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FFD700;
}

.page-about__why-choose-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-about__why-choose-item h3 {
  font-size: 1.5em;
  color: #1A2B5B;
  margin-bottom: 10px;
}

.page-about__why-choose-item p {
  font-size: 1em;
  color: #555;
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-about__section--contact {
  background-color: #1A2B5B;
  color: #FFFFFF;
  text-align: center;
}

.page-about__section--contact .page-about__section-title {
  color: #FFD700;
}

.page-about__section--contact .page-about__section-title::after {
  background-color: #FFD700;
}

.page-about__section--contact .page-about__paragraph {
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-about__section--contact .page-about__btn--primary {
  background-color: #FFD700;
  color: #1A2B5B;
  border-color: #FFD700;
}

.page-about__section--contact .page-about__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__hero-subtitle {
    font-size: 1.3em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__paragraph {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-about__values-grid, .page-about__why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@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__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-about__cta-bottom {
    display: flex;
    flex-direction: column;
  }
}