.page-about {
  /* body background is #0a0a0a (dark), so default text should be light */
  color: #f0f0f0;
  line-height: 1.7;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff; /* Light text for dark background */
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #1A73E8);
  border-radius: 2px;
}

.page-about__card {
  background: #1c1c1c; /* Darker background for cards on dark page background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 40px;
  margin-bottom: 30px;
  color: #f0f0f0; /* Light text on dark card */
}

.page-about__card h3 {
  color: #FFD700; /* Accent color for card titles */
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px 0;
}

.page-about__image--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #1A73E8, #0a0a0a); /* Blend with body background */
  color: #ffffff;
  overflow: hidden;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
}

.page-about__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Vibrant gold for CTA */
  color: #000000; /* Black text on gold for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFC107);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 20px;
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

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

.page-about__content-text {
  flex: 1;
}

.page-about__content-text h3 {
  font-size: 28px;
  color: #FFD700; /* Accent color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__content-text p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-about__content-text strong {
  color: #FFD700;
}

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

/* Values Section */
.page-about__values-section {
  padding: 80px 0;
  background-color: #1A73E8; /* Primary color background */
  color: #ffffff;
}

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

.page-about__value-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on primary background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff; /* Light text on dark/colored background */
}

.page-about__value-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__value-card h3 {
  color: #FFD700; /* Accent color */
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Benefits Section */
.page-about__benefits-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

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

.page-about__benefit-card {
  background: #1c1c1c; /* Dark card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #f0f0f0;
}

.page-about__benefit-card:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
}

.page-about__benefit-icon {
  width: 100px; /* Increased size for icons */
  height: 100px;
  margin-bottom: 20px;
  filter: invert(0%); /* Ensure original color */
}

.page-about__benefit-card h3 {
  color: #FFD700; /* Accent color */
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Team Section */
.page-about__team-section {
  padding: 80px 0;
  background-color: #1A73E8; /* Primary color background */
  color: #ffffff;
}

.page-about__team-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-about__team-description p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* History Section */
.page-about__history-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

.page-about__history-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-about__history-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Commitment Section */
.page-about__commitment-section {
  padding: 80px 0;
  background-color: #1c1c1c; /* Slightly lighter dark background */
  color: #f0f0f0;
}

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

.page-about__commitment-item {
  background: #0a0a0a; /* Darker background for items */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-about__commitment-item h3 {
  color: #FFD700; /* Accent color */
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__commitment-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #1c1c1c; /* Dark card background for FAQ items */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #e0e0e0;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #2a2a2a; /* Slightly lighter background for open answer */
  border-radius: 0 0 5px 5px;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A73E8; /* Primary color for question header */
  border: 1px solid #1A73E8;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-about__faq-question:hover {
  background: #145cb3; /* Darker primary on hover */
  border-color: #145cb3;
}

.page-about__faq-question:active {
  background: #0f4a9a;
}

.page-about__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Accent color for toggle */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #ffffff; /* White when active */
  transform: rotate(45deg); /* Rotate plus to cross */
}

/* General text and links */
.page-about a {
  color: #FFD700; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about a:hover {
  color: #FFA500;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__content-image {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-title {
    font-size: 36px;
  }

  .page-about__hero-subtitle {
    font-size: 18px;
  }

  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-about__card {
    padding: 25px;
  }

  .page-about__card h3 {
    font-size: 20px;
  }

  .page-about__card p {
    font-size: 15px;
  }

  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

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

  .page-about__benefit-icon {
    width: 80px;
    height: 80px;
  }

  .page-about__team-description p,
  .page-about__history-content p {
    font-size: 16px;
  }

  .page-about__faq-question {
    padding: 15px;
  }

  .page-about__faq-question h3 {
    font-size: 16px;
  }

  .page-about__faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-about__faq-answer {
    padding: 0 15px;
  }

  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px !important;
  }
  
  /* Ensure all images are responsive and do not overflow */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-about__container,
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__benefits-section,
  .page-about__team-section,
  .page-about__history-section,
  .page-about__commitment-section,
  .page-about__faq-section,
  .page-about__card,
  .page-about__value-card,
  .page-about__benefit-card,
  .page-about__commitment-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-section {
    padding-left: 0 !important; /* Hero section content is centered, padding on container */
    padding-right: 0 !important;
  }
  .page-about__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}