.page-about {
  padding-top: 120px; /* Adjust for fixed header */
  background-color: #121212;
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-about__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-highlight {
  color: #ffc107;
  font-weight: bold;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-about__cta-button--primary {
  background: #ffc107;
  color: #121212;
  border: none;
}

.page-about__cta-button--primary:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-about__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-about__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #f0f0f0;
}

.page-about__mission-vision .page-about__dark-bg {
  background: rgba(0, 123, 255, 0.1); /* Slightly transparent primary color for dark background */
  border-radius: 12px;
  padding: 40px;
}

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

.page-about__text-block {
  flex: 1;
  padding-right: 20px;
}

.page-about__text-block p {
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

.page-about__values {
  background-color: #1a1a1a;
}

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

.page-about__card--value {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  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 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__card--value:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.page-about__card-title {
  font-size: 1.6em;
  color: #ffc107;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__card--value p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-about__journey .page-about__dark-bg {
  background: rgba(0, 123, 255, 0.15); /* Slightly darker transparent primary color */
  border-radius: 12px;
  padding: 60px 40px;
}

.page-about__timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-about__timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #ffc107;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.page-about__timeline-item {
  padding: 10px 0;
  position: relative;
  width: 50%;
}

.page-about__timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 60px;
  text-align: right;
}

.page-about__timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
  text-align: left;
}

.page-about__timeline-item::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: -14px;
  background-color: #007bff;
  border: 4px solid #ffc107;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.page-about__timeline-item:nth-child(even)::after {
  left: -12px;
}

.page-about__timeline-year {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 10px;
}

.page-about__timeline-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-about__timeline-content p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-about__why-choose-us {
  background-color: #121212;
}

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

.page-about__card--feature {
  background: rgba(0, 123, 255, 0.1); /* Primary color with transparency */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.page-about__card--feature:hover {
  transform: translateY(-5px);
  background: rgba(0, 123, 255, 0.15);
}

.page-about__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__card--feature .page-about__card-title {
  color: #ffc107;
  font-size: 1.4em;
}

.page-about__card--feature p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-about__cta-bottom {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #0056b3, #007bff);
  border-radius: 0;
}

.page-about__cta-bottom .page-about__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-about__cta-bottom .page-about__intro-text {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__hero-description, .page-about__intro-text {
    font-size: 1em;
  }
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__text-block {
    padding-right: 0;
  }
  .page-about__timeline::before {
    left: 15px;
  }
  .page-about__timeline-item {
    width: 100%;
    padding-left: 45px;
    padding-right: 15px;
    text-align: left;
  }
  .page-about__timeline-item:nth-child(odd) {
    padding-right: 15px;
    text-align: left;
  }
  .page-about__timeline-item::after,
  .page-about__timeline-item:nth-child(even)::after {
    left: 9px;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px !important; /* Adjust for mobile fixed header */
  }
  .page-about__hero-section {
    padding: 60px 0;
  }
  .page-about__main-title {
    font-size: 2.2em;
  }
  .page-about__section {
    padding: 50px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__intro-text {
    margin-bottom: 40px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__mission-vision .page-about__dark-bg,
  .page-about__journey .page-about__dark-bg {
    padding: 30px;
  }
  .page-about__value-cards, .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__card--value, .page-about__card--feature {
    padding: 20px;
  }
  .page-about__card-title {
    font-size: 1.4em;
  }
  .page-about__timeline-year {
    font-size: 1.5em;
  }
  .page-about__timeline-title {
    font-size: 1.2em;
  }
  /* Images responsive */
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__image-wrapper,
  .page-about__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Contrast Fixes */
.page-about__dark-bg {
  color: #ffffff;
}

.page-about__light-bg {
  color: #333333;
}

.page-about__cta-bottom .page-about__cta-button--primary {
  color: #121212;
}