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

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

.page-about__hero {
  background: linear-gradient(135deg, #004AAD, #002880); /* Darker blue gradient for depth */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #FFD700;
}

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

.page-about__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #004AAD; /* Dark blue text on gold button for contrast */
  border-color: #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__btn--secondary {
  background-color: #004AAD;
  color: #FFD700;
  border-color: #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #002880;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
  margin-left: 20px;
}

.page-about__btn--outline:hover {
  background-color: #FFD700;
  color: #004AAD;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #004AAD;
  font-weight: bold;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

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

.page-about__text-content h2 {
  font-size: 2em;
  color: #004AAD;
  margin-bottom: 20px;
}

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

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

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

.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: #f0f8ff; /* Lighter blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.page-about__value-title {
  font-size: 1.5em;
  color: #004AAD;
  margin-bottom: 15px;
}

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

.page-about__team-intro {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-about__team-member {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-about__team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

.page-about__member-name {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1em;
  color: #777;
}

.page-about__cta {
  background-color: #004AAD;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__cta .page-about__section-title {
  color: #FFD700;
}

.page-about__cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-about__cta-buttons {
  margin-top: 30px;
}

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

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

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

  .page-about__content-wrapper {
    flex-direction: column;
  }

  .page-about__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-about__text-content h2 {
    font-size: 1.8em;
  }

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

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

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

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

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

  .page-about__section {
    padding: 60px 0;
  }

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

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

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

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

  .page-about__btn--outline {
    margin-left: 0;
  }
}

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

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

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

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

  .page-about__team-photo {
    width: 120px;
    height: 120px;
  }

  .page-about__member-name {
    font-size: 1.4em;
  }
}