/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1C33; /* Dark background, slightly lighter than main brand color */
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  background-color: #1A2B4C; /* Main brand color */
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

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

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

.page-about__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-about__hero-btn:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

/* General Section Styling */
.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

.page-about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-about__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-about__introduction-section,
.page-about__mission-vision-section,
.page-about__values-section,
.page-about__security-section,
.page-about__cta-section {
  padding: 80px 0;
}

/* Introduction Section */
.page-about__introduction-section {
  background-color: #12213D;
  text-align: center;
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
  background-color: #0F1C33;
}

.page-about__mission-vision-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

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

.page-about__mission-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.page-about__values-section {
  background-color: #1A2B4C;
}

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

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

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

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

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

/* Security Section */
.page-about__security-section {
  background-color: #0F1C33;
}

.page-about__security-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse; /* Image on right, text on left */
}

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

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

.page-about__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-about__cta-section {
  background-color: #1A2B4C;
  text-align: center;
  padding: 100px 0;
}

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

.page-about__cta-text {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-about__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

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

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

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

/* Responsive Design */
@media (max-width: 992px) {
  .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__mission-vision-grid,
  .page-about__security-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-about__mission-image-wrapper,
  .page-about__security-image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }

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

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 80px 0;
    min-height: 400px;
  }

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

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

  .page-about__introduction-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__security-section,
  .page-about__cta-section {
    padding: 60px 0;
  }

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

  .page-about__values-grid {
    grid-template-columns: 1fr;
  }

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

  .page-about__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section {
    padding: 60px 0;
    min-height: 350px;
  }

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

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

  .page-about__btn,
  .page-about__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-about__text {
    font-size: 1em;
  }

  .page-about__value-icon {
    width: 60px;
    height: 60px;
  }

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