/* style/about.css */

/* Base styles for the About Us page */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Brand colors for dark bg */
  color: #ffffff; /* Light text for dark background */
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

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

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button custom color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: #ffffff;
  color: #2F6BFF; /* Primary color for text */
  border: 2px solid #2F6BFF;
}

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

/* General Section Styles */
.page-about__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 40px;
}

.page-about__text-block {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-about__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Mission & Vision Section */
.page-about__mission-vision .page-about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Advantages Section */
.page-about__advantages {
  background-color: #F4F7FB; /* Background */
}

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

.page-about__card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border custom color */
  color: #1F2D3D; /* Text Main */
}

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

.page-about__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF; /* Primary brand color */
  margin-bottom: 15px;
}

.page-about__card p {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
}

.page-about__cta-section {
  margin-top: 50px;
}

/* Process Section */
.page-about__process-steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-about__step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid #D6E2FF; /* Border custom color */
}

.page-about__step-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-about__btn-text {
  display: inline-block;
  margin-top: 20px;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.page-about__btn-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #2F6BFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.page-about__btn-text:hover::after {
  transform: scaleX(1);
}

/* Commitment Section */
.page-about__commitment-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Brand colors for dark bg */
  color: #ffffff;
}

.page-about__commitment-section .page-about__section-title {
  color: #ffffff;
}

.page-about__commitment-section .page-about__text-block p,
.page-about__commitment-section .page-about__commitment-list li {
  color: #f0f0f0;
}

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

.page-about__content-flex .page-about__text-block {
  flex: 1;
}

.page-about__content-flex .page-about__image-content {
  flex: 1;
  margin: 0;
  border-radius: 12px;
}

.page-about__commitment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__commitment-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.page-about__commitment-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #A5C4FF; /* Glow color for checkmark */
  font-weight: bold;
}

/* FAQ Section */
.page-about__faq-section {
  background-color: #F4F7FB; /* Background */
}

.page-about__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-about__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border custom color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #1F2D3D; /* Text Main */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2F6BFF;
  cursor: pointer;
  background-color: #F8F9FA;
  border-bottom: 1px solid #D6E2FF;
}

.page-about__faq-item[open] .page-about__faq-question {
  border-bottom: 1px solid #D6E2FF;
}

.page-about__faq-question .page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.7;
}

.page-about__faq-answer p {
  margin: 0;
}

/* Contact CTA Section */
.page-about__contact-cta {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Brand colors for dark bg */
  color: #ffffff;
  padding: 100px 0;
}

.page-about__contact-content {
  max-width: 800px;
}

.page-about__contact-cta .page-about__section-title {
  color: #ffffff;
}

.page-about__contact-cta .page-about__description {
  color: #f0f0f0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-about__section-title {
    font-size: 2rem;
  }
  .page-about__content-flex {
    flex-direction: column;
  }
  .page-about__content-flex .page-about__image-content {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-about__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-about__description {
    font-size: 1rem;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__section {
    padding: 50px 0;
  }
  .page-about__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-about__grid-layout {
    grid-template-columns: 1fr;
  }
  .page-about__card {
    padding: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__card-title {
    font-size: 1.3rem;
  }
  .page-about__process-steps {
    flex-direction: column;
    align-items: center;
  }
  .page-about__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-about__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .page-about__contact-cta {
    padding: 60px 0;
  }
  .page-about__contact-content {
    padding: 0 15px !important;
  }

  /* Ensure all images are responsive */
  .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-image-wrapper,
  .page-about__process-steps,
  .page-about__step-item,
  .page-about__content-flex {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-about__hero-section { /* Override to ensure no extra padding */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-about__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-about__cta-buttons {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}