/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text on dark background */
  background-color: #1a2e44; /* Main background color */
}

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

.page-about__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a4a5a 100%); /* Darker gradient */
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

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

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

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #1A2E44;
  border: 2px solid #FFD700;
}

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

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

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

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

.page-about__section--mission {
  background-color: #1A2E44;
}

.page-about__section--values {
  background-color: #2a3d52; /* Slightly lighter dark background */
}

.page-about__section--team {
  background-color: #1A2E44;
}

.page-about__section--cta {
  background-color: #3a4a5a;
  text-align: center;
}

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

.page-about__section--mission .page-about__section-title,
.page-about__section--team .page-about__section-title {
  color: #FFD700;
}

.page-about__section-description {
  font-size: 1.2em;
  color: #ccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-about__content-block {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-about__content-block--reverse {
  flex-direction: row-reverse;
}

.page-about__text-content {
  flex: 1;
  min-width: 300px;
}

.page-about__text-content h2 {
  text-align: left;
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-about__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__text-content ul li {
  background-color: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #FFD700;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-about__text-content ul li strong {
  color: #FFD700;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
  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__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about__team-member {
  background-color: #2a3d52;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-about__member-name {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__member-role {
  font-size: 1.1em;
  color: #ccc;
}

.page-about__cta-block {
  padding: 60px 20px;
  border-radius: 10px;
  background: #1A2E44;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-about__cta-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn--cta {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-about__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

/* 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: 2.2em;
  }
  .page-about__text-content h2 {
    font-size: 1.8em;
  }
  .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.2em;
  }
  .page-about__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about__section {
    padding: 60px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__content-block {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-block--reverse {
    flex-direction: column;
  }
  .page-about__text-content,
  .page-about__image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-about__text-content h2 {
    text-align: center;
  }
  .page-about__team-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
  .page-about__btn--cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-subtitle {
    font-size: 1em;
  }
  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__text-content p,
  .page-about__text-content ul li,
  .page-about__member-role {
    font-size: 0.95em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
}