.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

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

.page-about__section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0;
}

.page-about__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-about__section-subtitle {
  font-size: 1.1em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #F4F7FB;
  text-align: center;
}

.page-about__hero-image-wrapper {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  color: #2F6BFF;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-about__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__btn-secondary:hover {
  background-color: #e0eaff;
  color: #2457cc;
  border-color: #2457cc;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-about__mv-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-about__mv-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-about__mv-title {
  font-size: 1.8em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__mv-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.7;
}

/* Values Section */
.page-about__values-section {
  padding: 60px 0;
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-about__values-section .page-about__section-title,
.page-about__values-section .page-about__section-subtitle {
  color: #ffffff;
}

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

.page-about__value-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about__value-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.page-about__value-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #A5C4FF;
  margin-bottom: 15px;
}

.page-about__value-text {
  font-size: 0.95em;
  color: #f0f8ff;
  line-height: 1.6;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-about__why-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.page-about__why-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.page-about__why-item--reverse {
  flex-direction: row-reverse;
}

.page-about__why-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.page-about__why-content {
  flex: 1;
  max-width: 50%;
}

.page-about__why-title {
  font-size: 1.8em;
  color: #1F2D3D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__why-text {
  font-size: 1em;
  color: #333333;
  line-height: 1.7;
}

/* CTA Section */
.page-about__cta-section {
  padding: 80px 0;
  background-color: #2F6BFF;
  color: #ffffff;
  text-align: center;
}

.page-about__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f8ff;
}

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

/* FAQ Section */
.page-about__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-about__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #D6E2FF;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #1F2D3D;
  cursor: pointer;
  background-color: #f8faff;
  border-bottom: 1px solid #D6E2FF;
  transition: background-color 0.3s ease;
}

.page-about__faq-item[open] > .page-about__faq-question {
  background-color: #e0eaff;
  color: #2F6BFF;
  border-bottom: 1px solid #2F6BFF;
}

.page-about__faq-question:hover {
  background-color: #e0eaff;
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
  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: 15px 25px 25px 25px;
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

/* General Image styles */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-about__mv-grid {
    grid-template-columns: 1fr;
  }

  .page-about__why-item,
  .page-about__why-item--reverse {
    flex-direction: column;
    text-align: center;
  }

  .page-about__why-image,
  .page-about__why-content {
    max-width: 100%;
    flex: none;
  }

  .page-about__why-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px;
  }

  /* HERO Section - Mobile */
  .page-about__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px;
  }

  .page-about__main-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }

  .page-about__hero-description {
    font-size: 1em !important;
    margin-bottom: 25px;
  }

  .page-about__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Buttons - Mobile */
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .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: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-about__hero-cta-buttons,
  .page-about__cta-buttons-group,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  /* General Images - Mobile */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__mv-item,
  .page-about__value-card,
  .page-about__why-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-about__section-header {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .page-about__section-title {
    font-size: 2em !important;
  }

  .page-about__section-subtitle {
    font-size: 0.9em !important;
  }

  /* Mission & Vision - Mobile */
  .page-about__mv-grid {
    gap: 30px;
  }

  .page-about__mv-item {
    padding: 20px;
  }

  .page-about__mv-title {
    font-size: 1.5em !important;
  }

  /* Values - Mobile */
  .page-about__values-grid {
    gap: 20px;
  }

  .page-about__value-card {
    padding: 20px;
  }

  .page-about__value-title {
    font-size: 1.3em !important;
  }

  /* Why Choose Us - Mobile */
  .page-about__why-grid {
    gap: 40px;
  }

  .page-about__why-item {
    padding: 20px;
  }

  .page-about__why-title {
    font-size: 1.5em !important;
  }

  /* CTA Section - Mobile */
  .page-about__cta-section {
    padding: 50px 0;
  }

  .page-about__cta-title {
    font-size: 2em !important;
  }

  .page-about__cta-text {
    font-size: 1em !important;
    margin-bottom: 30px;
  }

  /* FAQ Section - Mobile */
  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1em !important;
  }

  .page-about__faq-answer {
    padding: 10px 20px 20px 20px;
    font-size: 0.95em !important;
  }
}