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

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

.page-about__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-about__light-bg {
  background-color: #1a1a1a; /* Dark gray for contrast with main dark background */
  color: #f0f0f0;
  padding: 60px 0;
}

.page-about__hero-section {
  text-align: center;
  padding-top: 80px; /* More space for hero */
  padding-bottom: 80px;
}

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

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 50px;
  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-color: #DC143C; /* Red accent */
  border-radius: 2px;
}

.page-about__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -30px auto 60px auto;
  color: #cccccc;
}

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

.page-about__link-inline {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__link-inline:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* CTA Buttons */
.page-about__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for contrast */
}

.page-about__btn-primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000; /* Black text */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Mission & Vision Section */
.page-about__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-about__card {
  background-color: #0d0d0d; /* Darker background for cards on light-bg section */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1em;
  color: #cccccc;
}

/* Values Section */
.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: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #f0f0f0;
}

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

.page-about__value-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #DC143C; /* Red accent */
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 0.95em;
  color: #cccccc;
}

/* Why Choose Us Section */
.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-item {
  background-color: #0d0d0d;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

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

.page-about__feature-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #cccccc;
}

.page-about__feature-list li::before {
  content: '✔';
  color: #DC143C;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__feature-description {
  color: #cccccc;
}

/* History Section */
.page-about__history-content {
  max-width: 900px;
  margin: 0 auto;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-about__milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  border-left: 3px solid #DC143C;
  padding-left: 20px;
}

.page-about__milestone-item {
  position: relative;
  padding-bottom: 20px;
}

.page-about__milestone-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0;
  width: 15px;
  height: 15px;
  background-color: #FFD700;
  border-radius: 50%;
  border: 3px solid #DC143C;
}

.page-about__milestone-year {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-about__milestone-description {
  font-size: 1em;
  color: #cccccc;
}

/* Commitment Section */
.page-about__commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__commitment-item {
  background-color: #0d0d0d;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-about__commitment-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__commitment-title {
  font-size: 1.6em;
  color: #DC143C;
  margin-bottom: 10px;
}

.page-about__commitment-description {
  color: #cccccc;
}

/* CTA Section */
.page-about__cta-section {
  text-align: center;
  padding: 80px 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-about__values-grid,
  .page-about__features-grid,
  .page-about__commitment-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* Mobile fixed header adjustment */
  }
  .page-about__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__section-intro {
    font-size: 0.95em;
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .page-about__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__card,
  .page-about__value-item,
  .page-about__feature-item,
  .page-about__commitment-item {
    padding: 20px;
  }
  .page-about__card-image,
  .page-about__value-icon,
  .page-about__feature-icon,
  .page-about__commitment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-about__card-title,
  .page-about__value-title,
  .page-about__feature-title,
  .page-about__commitment-title {
    font-size: 1.3em;
  }
  .page-about__milestones {
    padding-left: 15px;
  }
  .page-about__milestone-item::before {
    left: -23px;
    width: 12px;
    height: 12px;
    border-width: 2px;
  }
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__values-section,
  .page-about__why-choose-us-section,
  .page-about__history-section,
  .page-about__commitment-section,
  .page-about__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}