/* style/about.css */

.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A1931; /* Deep blue main background */
}

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

/* Hero Section */
.page-about__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #2a4778 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

/* General Section Styling */
.page-about__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-about__content-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

/* Grid Layout for Sections */
.page-about__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__grid--reverse {
  flex-direction: row-reverse;
}

.page-about__content-block,
.page-about__image-block {
  flex: 1;
}

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

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

.page-about__value-item {
  background-color: #1a2c4a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  background-color: #2a3d5e;
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-about__value-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for value titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__value-item p {
  color: #CCCCCC;
  font-size: 1em;
}

/* Call to Action Banner */
.page-about__cta-banner {
  background: linear-gradient(45deg, #0A1931, #E03B8B); /* Deep blue to magenta gradient */
  padding: 60px 0;
  text-align: center;
}

.page-about__cta-content {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

/* Buttons */
.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Deep blue text */
}

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

.page-about__btn--secondary {
  background-color: #0A1931; /* Deep blue */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #1a2c4a;
  transform: translateY(-2px);
}

.page-about__btn--tertiary {
  background-color: #E03B8B; /* Magenta */
  color: #FFFFFF; /* White text */
}

.page-about__btn--tertiary:hover {
  background-color: #c92a7a;
  transform: translateY(-2px);
}

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

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

  .page-about__grid {
    flex-direction: column;
    text-align: center;
  }

  .page-about__grid--reverse {
    flex-direction: column;
  }

  .page-about__content-block,
  .page-about__image-block {
    width: 100%;
  }

  .page-about__image {
    margin-top: 30px;
  }

  .page-about__values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

@media (max-width: 768px) {
  .page-about__hero-section,
  .page-about__section,
  .page-about__cta-banner {
    padding: 60px 0;
  }

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

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

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__content-block p {
    font-size: 1em;
  }

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

  .page-about__value-title {
    font-size: 1.3em;
  }

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

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

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

  .page-about__btn {
    width: 80%;
    margin: 0 auto;
    font-size: 1em;
    padding: 12px 25px;
  }
}

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

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

  .page-about__btn {
    width: 100%;
  }
}