.page-about {
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000; /* Assuming body background is black from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  /* padding-top: var(--header-offset, 120px); Assuming shared.css already applies padding-top to body */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background: linear-gradient(90deg, #1A202C 0%, #000000 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css already applies padding-top to body */
}

.page-about__hero-content {
  flex: 1;
  padding: 0 40px;
  max-width: 60%;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__hero-cta {
  display: flex;
  gap: 20px;
}

.page-about__btn-primary {
  background: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

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

.page-about__btn-secondary {
  background: none;
  color: #FFD700;
  padding: 15px 30px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

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

.page-about__hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 40%;
  padding-right: 40px;
  z-index: 0;
}

.page-about__hero-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-about__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: #FFD700; /* Gold accent */
}

.page-about__dark-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 0;
}

.page-about__mission-vision-section {
  padding: 80px 0;
}

.page-about__grid {
  display: grid;
  gap: 30px;
}

.page-about__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-about__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-about__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-about__card-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-about__card p {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

.page-about__why-choose-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-about__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-about__feature-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
  background-color: #000;
}

.page-about__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-about__feature-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  text-align: left;
}

.page-about__commitment-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-about__commitment-content img {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
}

.page-about__commitment-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__commitment-list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f0f0f0;
}

.page-about__icon-check {
  color: #4CAF50; /* Green accent */
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  flex-shrink: 0;
}

.page-about__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.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;
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A202C;
  border: 1px solid #333;
  border-radius: 8px;
  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: #2a3447;
  border-color: #555;
}

.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: #FFD700;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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: 30px;
  height: 30px;
}

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

.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1A202C;
}

.page-about__cta-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-about__btn-large {
  padding: 18px 40px;
  font-size: 20px;
  border-radius: 10px;
}

/* General image responsiveness */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-about__hero-content {
    max-width: 100%;
    padding: 0 30px;
    text-align: center;
  }
  .page-about__hero-cta {
    justify-content: center;
  }
  .page-about__hero-title {
    font-size: 40px;
  }
  .page-about__hero-image-container {
    max-width: 80%;
    padding-right: 0;
    margin-top: 40px;
  }
  .page-about__grid--2-cols {
    grid-template-columns: 1fr;
  }
  .page-about__commitment-content {
    flex-direction: column;
  }
  .page-about__commitment-content img {
    max-width: 80%;
  }
  .page-about__commitment-list {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__hero-section {
    padding: 40px 0;
  }
  .page-about__hero-content {
    padding: 0 15px;
  }
  .page-about__hero-title {
    font-size: 32px;
  }
  .page-about__hero-description {
    font-size: 16px;
  }
  .page-about__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary, .page-about__btn-secondary, .page-about__btn-large, .page-about a[class*="button"], .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-image-container {
    max-width: 100%;
    padding: 0 15px;
  }
  .page-about__section-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .page-about__dark-section {
    padding: 60px 0;
  }
  .page-about__mission-vision-section {
    padding: 60px 0;
  }
  .page-about__card {
    padding: 20px;
  }
  .page-about__card-title {
    font-size: 24px;
  }
  .page-about__card p {
    font-size: 15px;
  }
  .page-about__why-choose-section {
    padding: 60px 0;
  }
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__feature-item {
    padding: 20px;
  }
  .page-about__feature-item img {
    
    
  }
  .page-about__feature-title {
    font-size: 20px;
  }
  .page-about__feature-item p {
    font-size: 14px;
  }
  .page-about__commitment-content img {
    max-width: 100%;
  }
  .page-about__commitment-list li {
    font-size: 15px;
    padding: 12px 15px;
  }
  .page-about__faq-section {
    padding: 60px 0;
  }
  .page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-question h3 {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px !important;
  }
  .page-about__cta-description {
    font-size: 18px;
  }
  .page-about__btn-large {
    padding: 15px 30px;
    font-size: 18px;
  }
  /* Ensure all images are responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* All containers with images should be constrained */
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-section,
  .page-about__commitment-section,
  .page-about__faq-section,
  .page-about__cta-section,
  .page-about__container,
  .page-about__card,
  .page-about__feature-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}