/* style/about.css */
/* Colors */
:root {
  --page-about-primary-color: #FF8C1A;
  --page-about-accent-color: #FFA53A;
  --page-about-card-bg: #17191F;
  --page-about-body-bg: #0D0E12;
  --page-about-text-main: #FFF3E6;
  --page-about-border-color: #A84F0C;
  --page-about-glow-color: #FFB04D;
  --page-about-deep-orange: #D96800;
}

.page-about {
  font-family: 'Arial', sans-serif;
  color: var(--page-about-text-main); /* Default text color for dark body background */
  background-color: var(--page-about-body-bg); /* Ensure consistency if body background is not fully dark */
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-about-body-bg);
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: var(--page-about-accent-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(255, 165, 58, 0.5);
}

.page-about__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--page-about-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, var(--page-about-accent-color) 0%, var(--page-about-deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
  border: none;
  cursor: pointer;
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--page-about-primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 140, 26, 0.3);
}

.page-about__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: var(--page-about-accent-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--page-about-text-main);
}

/* Introduction Section */
.page-about__introduction-section {
  padding: 80px 0;
  background-color: var(--page-about-body-bg);
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.page-about__dark-section {
  background-color: var(--page-about-card-bg);
  padding: 80px 0;
}

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

.page-about__advantage-card {
  background-color: var(--page-about-card-bg);
  border: 1px solid var(--page-about-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-about-border-color);
}

.page-about__card-title {
  font-size: 1.4em;
  color: var(--page-about-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

/* Commitment Section */
.page-about__commitment-section {
  padding: 80px 0;
  background-color: var(--page-about-body-bg);
}

.page-about__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-about__commitment-item {
  background-color: var(--page-about-card-bg);
  border: 1px solid var(--page-about-border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__commitment-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-about__commitment-heading {
  font-size: 1.5em;
  color: var(--page-about-accent-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Future Section */
.page-about__future-section {
  text-align: center;
}

.page-about__future-description {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--page-about-text-main);
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
  background-color: var(--page-about-body-bg);
}

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

.page-about__faq-item {
  background-color: var(--page-about-card-bg);
  border: 1px solid var(--page-about-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--page-about-primary-color);
  cursor: pointer;
  background-color: var(--page-about-card-bg);
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #2a2c34; /* Slightly lighter card bg for hover */
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: var(--page-about-accent-color);
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--page-about-text-main);
}

/* Details tag specific styling */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-about__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__text-block {
    order: 1;
  }
  .page-about__image-block {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-about__main-title {
    font-size: 2em;
  }

  .page-about__description {
    font-size: 0.95em;
  }

  .page-about__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    font-size: 1.2em;
  }

  .page-about__introduction-section,
  .page-about__dark-section,
  .page-about__commitment-section,
  .page-about__future-section,
  .page-about__faq-section {
    padding: 50px 0;
  }

  .page-about__container,
  .page-about__advantage-card,
  .page-about__commitment-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__hero-image,
  .page-about__content-image,
  .page-about__card-image,
  .page-about__commitment-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__advantages-grid,
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
  }

  .page-about__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Ensure buttons in groups wrap */
  .page-about__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
  }
}