/* 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: #0f1a2e; /* A slightly lighter dark blue background for contrast */
}

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

.page-about__hero {
  background-color: #1A2B4C; /* Main dark blue */
  background-image: linear-gradient(135deg, #1A2B4C 0%, #0f1a2e 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-about__hero-description {
  font-size: 1.2em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.page-about__section {
  padding: 60px 0;
  background-color: #0f1a2e; /* Darker background for sections */
}

.page-about__section--alt-bg {
  background-color: #1A2B4C; /* Main dark blue for alternating sections */
}

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

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

.page-about__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #d0d0d0;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-about__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

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

.page-about__value-item {
  background-color: #2a3b5c; /* Slightly lighter dark blue for value cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-8px);
  background-color: #3b4c6d;
}

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

.page-about__value-item p {
  color: #c0c0c0;
  font-size: 1.05em;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__list li {
  background-color: #2a3b5c; /* Lighter dark blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold border for emphasis */
  border-radius: 5px;
  font-size: 1.1em;
  color: #d0d0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about__list li strong {
  color: #FFD700;
}

.page-about__section--cta {
  background-color: #1A2B4C; /* Main dark blue for CTA section */
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-content p {
  font-size: 1.3em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 20px auto 40px;
}

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

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

.page-about__btn--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #1A2B4C; /* Dark blue text on gold */
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-about__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-about__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1); /* Slight gold background on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }
  .page-about__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-about__content-grid .page-about__image:first-child {
    order: 2; /* Image below text on smaller screens for reversed grid */
  }
  .page-about__content-grid .page-about__text-content:first-child {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 60px 0 30px;
    min-height: 400px;
  }
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-content p {
    font-size: 1.1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__list li {
    font-size: 1em;
    padding: 15px;
  }
}