.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: var(--background-color, #0A0A0A); /* Body background from shared */
}

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-about__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #FFF6D6; /* Text Main */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-about__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 246, 214, 0.8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Color Contrast Handling */
.page-about__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-about__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

/* HERO Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

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

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.5); /* Glow */
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-about__main-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-about__intro-text {
  font-size: 20px;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #DDA11D 0%, #B88A1A 100%); /* Darker gradient for white text */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD36B; /* Glow */
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #DDA11D 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Mission Vision Section */
.page-about__mission-vision .page-about__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 211, 107, 0.5); /* Glow */
}

.page-about__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12; /* Border */
}

.page-about__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
}

.page-about__card p {
  font-size: 16px;
  color: rgba(255, 246, 214, 0.8);
}

/* Values Section */
.page-about__value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-about__value-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF6D6;
}

.page-about__value-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

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

.page-about__offering-item img {
  height: 200px; /* Consistent height for offering images */
}

.page-about__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 1px solid #FFD36B; /* Glow */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-about__btn-secondary:hover {
  background: #FFD36B; /* Glow */
  color: #111111; /* Card BG for text */
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.7);
}

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

.page-about__feature-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF6D6;
}

.page-about__feature-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

/* FAQ Section */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(255, 211, 107, 0.1); /* Light hover effect */
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B; /* Glow */
}
.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background */
  border-radius: 0 0 5px 5px;
  color: rgba(255, 246, 214, 0.8);
  text-align: left;
}

/* Contact CTA Section */
.page-about__contact-cta {
  padding-bottom: 80px;
}

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #DDA11D 0%, #B88A1A 100%); /* Darker gradient for white text */
  color: #ffffff;
  border: 1px solid #FFD36B; /* Glow */
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #DDA11D 100%);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 32px;
  }
  .page-about__main-title {
    font-size: 40px;
  }
  .page-about__intro-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-image img {
    border-radius: 4px;
  }
  .page-about__main-title {
    font-size: 32px;
  }
  .page-about__intro-text {
    font-size: 16px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 28px;
  }
  .page-about__section-description {
    font-size: 15px;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__card {
    padding: 20px;
  }
  .page-about__card-title {
    font-size: 20px;
  }
  .page-about__card p {
    font-size: 15px;
  }
  .page-about__value-heading {
    font-size: 20px;
  }
  .page-about__offering-item img {
    
  }
  .page-about__btn-secondary {
    padding: 8px 20px;
    font-size: 14px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__feature-heading {
    font-size: 20px;
  }
  details.page-about__faq-item summary.page-about__faq-question { padding: 15px; }
  .page-about__faq-qtext { font-size: 16px; }
  .page-about__faq-answer {
    padding: 0 15px 15px;
  }
  .page-about__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-about__button-group .page-about__cta-button, .page-about__button-group .page-about__btn-secondary {
    width: 100%;
    max-width: 100%;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__button-group {
    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;
    padding-right: 0 !important;
  }
  .page-about__hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 28px;
  }
  .page-about__section-title {
    font-size: 24px;
  }
  .page-about__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-about__faq-qtext {
    font-size: 15px;
  }
}