.page-about {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main for dark body background */
  background-color: var(--deep-navy); /* Body background from shared.css */
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for hero section */
  padding-bottom: 60px;
  background-color: #08162B; /* Deep Navy from palette */
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

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

.page-about__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-about__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__text-block {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__introduction-section,
.page-about__commitment-section,
.page-about__contact-faq-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-about__why-choose-us-section,
.page-about__team-section {
  padding: 60px 0;
  background-color: #113B7A; /* Main color */
}

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

.page-about__card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border color */
}

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

.page-about__card-image,
.page-about__feature-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__card-title,
.page-about__feature-title,
.page-about__commitment-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-about__card-text,
.page-about__feature-text,
.page-about__commitment-text {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
  text-align: justify;
  flex-grow: 1;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-about__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-about__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-weight: 700;
}

.page-about__button-group {
    text-align: center;
    margin-top: 40px;
}

.page-about__team-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-about__team-image {
  flex: 1 1 400px;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-about__team-text {
  flex: 2 1 400px;
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: center;
}

.page-about__contact-list li {
  font-size: 1.1rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-about__contact-list li strong {
  color: #F2C14E; /* Gold */
}

.page-about__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #AFC4E8;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  cursor: pointer;
  background-color: #113B7A; /* Main color */
  border-bottom: 1px solid #1B3357; /* Divider */
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
  transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  text-align: justify;
}

.page-about__faq-answer p {
    margin-bottom: 10px;
}

.page-about__btn-link {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 10px;
  border: none;
}

.page-about__btn-link:hover {
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__hero-content {
    max-width: 700px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-about__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }
  .page-about__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-about__sub-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  .page-about__team-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__team-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-about__hero-image {
    max-height: 400px;
  }
  .page-about__hero-content {
    padding: 0 15px;
  }
  .page-about__main-title {
    font-size: 2rem;
  }
  .page-about__hero-description {
    font-size: 1rem;
  }
  .page-about__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-top: 30px;
  }
  .page-about__text-block {
    font-size: 0.9rem;
  }
  .page-about__card-grid,
  .page-about__feature-grid,
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card {
    padding: 20px;
  }
  .page-about__card-title,
  .page-about__feature-title,
  .page-about__commitment-title {
    font-size: 1.3rem;
  }
  .page-about__card-text,
  .page-about__feature-text,
  .page-about__commitment-text {
    font-size: 0.85rem;
  }
  .page-about__list li {
    font-size: 0.85rem;
  }
  .page-about__team-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-about__contact-list li {
    font-size: 1rem;
  }
  .page-about__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__introduction-section,
  .page-about__why-choose-us-section,
  .page-about__commitment-section,
  .page-about__team-section,
  .page-about__contact-faq-section,
  .page-about__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .page-about__btn-link {
    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;
  }
}