/* style/about.css */

/* Base styles for the page content */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1A26; /* Slightly lighter dark blue for overall background */
}

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

/* Typography */
.page-about h1, .page-about h2, .page-about h3 {
  color: #FFD700; /* Gold for titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about h1 {
  font-size: 3.2em;
  text-align: center;
  margin-bottom: 20px;
}

.page-about h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
}

.page-about h3 {
  font-size: 1.8em;
  text-align: center;
}

.page-about p {
  font-size: 1.1em;
  margin-bottom: 1em;
}

.page-about .highlight {
  color: #FFD700; /* Highlight important keywords */
  font-weight: bold;
}

/* Buttons */
.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;
  text-align: center;
  cursor: pointer;
  font-size: 1.1em;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #E0B800; /* Slightly darker gold on hover */
  color: #0F1A26;
}

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

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44; /* Dark blue text on hover */
}

/* Hero Section */
.page-about__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #0F1A26 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-about__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for main title */
}

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

/* General Section Styling */
.page-about__section {
  padding: 80px 0;
  background-color: #1A2E44; /* Main dark blue for sections */
  margin-bottom: 20px;
}

.page-about__section:nth-child(even) {
  background-color: #0F1A26; /* Alternate section background for visual separation */
}

.page-about__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: #FFD700;
}

/* 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 {
  flex: 1;
}

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

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

.page-about__image--center {
  display: block;
  margin: 40px auto 0;
  max-width: 600px;
}

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

.page-about__value-card {
  background-color: #0F1A26; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
  background-color: #1A2E44;
}

.page-about__value-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-about__value-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

/* CTA Section */
.page-about__cta-section {
  background-color: #FFD700; /* Gold background for strong CTA */
  padding: 80px 0;
  text-align: center;
  color: #1A2E44; /* Dark blue text for contrast */
}

.page-about__cta-title {
  color: #1A2E44;
  font-size: 3em;
  margin-bottom: 20px;
}

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

.page-about__cta-buttons .page-about__btn {
  margin: 0 15px;
}

.page-about__cta-buttons .page-about__btn--primary {
  background-color: #1A2E44;
  color: #FFD700;
  border-color: #1A2E44;
}

.page-about__cta-buttons .page-about__btn--primary:hover {
  background-color: #0F1A26;
  border-color: #0F1A26;
  color: #FFD700;
}

.page-about__cta-buttons .page-about__btn--secondary {
  background-color: transparent;
  color: #1A2E44;
  border-color: #1A2E44;
}

.page-about__cta-buttons .page-about__btn--secondary:hover {
  background-color: #1A2E44;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about h1 {
    font-size: 3em;
  }
  .page-about h2 {
    font-size: 2.2em;
  }
  .page-about__hero-title {
    font-size: 3.2em;
  }
  .page-about__section-title {
    font-size: 2.4em;
  }
  .page-about__grid {
    flex-direction: column;
  }
  .page-about__grid--reverse {
    flex-direction: column;
  }
  .page-about__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about h1 {
    font-size: 2.5em;
  }
  .page-about h2 {
    font-size: 2em;
  }
  .page-about__section {
    padding: 60px 0;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-buttons .page-about__btn {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .page-about h1 {
    font-size: 2em;
  }
  .page-about h2 {
    font-size: 1.8em;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}