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

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

/* Hero Section */
.page-about__hero {
  background: linear-gradient(135deg, #0A2463, #3a5c9b);
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-about__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 0;
  }
  .page-about__hero-content {
    flex: 1;
    padding-left: 20px;
  }
  .page-about__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

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

.page-about__hero-image-wrapper {
  padding: 0 20px;
}

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

/* General Section Styling */
.page-about__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-about__section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Grid */
.page-about__cards-grid, .page-about__values-grid, .page-about__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-about__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about__values-grid, .page-about__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-about__values-grid, .page-about__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about__card, .page-about__value-item, .page-about__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover, .page-about__value-item:hover, .page-about__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__card-icon, .page-about__value-icon, .page-about__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-about__card-title, .page-about__value-title, .page-about__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-about__card-text, .page-about__value-description, .page-about__feature-description {
  font-size: 1em;
  color: #666;
}

/* Call to Action Section */
.page-about__cta {
  background: linear-gradient(45deg, #0A2463, #FFD700);
  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;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  white-space: nowrap;
}

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

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

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

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

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

.page-about__btn--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}