.page-about {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: var(--color-background, #0A0A0A); /* Background */
  line-height: 1.6;
  font-size: 16px;
}

.page-about__section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--color-background, #0A0A0A);
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-about__section--last {
  border-bottom: none;
}

.page-about__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-about__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6;
}

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

.page-about__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-about__sub-title {
  font-size: 26px;
  font-weight: 600;
  color: #FFD36B; /* Secondary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__vision-title {
  margin-top: 50px;
  color: #F2C14E;
}

.page-about__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #FFF6D6; /* Text Main */
}

.page-about__text-block strong {
  color: #FFD36B;
}

.page-about__center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}

/* HERO Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-about__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-about__main-title {
  font-size: clamp(30px, 5vw, 52px); /* Responsive font size */
  font-weight: 900;
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-about__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD36B;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about__cta-button--secondary {
  background: none;
  border: 2px solid #F2C14E;
  color: #F2C14E;
  box-shadow: none;
}

.page-about__cta-button--secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: #FFD36B;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
  border-radius: 10px;
}

/* Grid Layouts */
.page-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-about__grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-about__grid-item:first-child {
    order: 2;
  }
  .page-about__grid-item:last-child {
    order: 1;
  }
}

.page-about__image-content {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
  object-fit: cover;
}

.page-about__image-content--cta {
  max-width: 600px;
  margin-bottom: 30px;
}

.page-about__text-content {
  padding: 20px;
}

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

.page-about__advantage-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__advantage-item:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

@media (min-width: 768px) {
  .page-about__advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about__advantages-grid .page-about__advantage-item:nth-child(even) {
    order: 1;
  }
  .page-about__advantages-grid .page-about__advantage-item:nth-child(odd) {
    order: 2;
  }
  .page-about__advantages-grid .page-about__advantage-item:nth-child(6) {
    order: unset; /* Reset order for the image item */
  }
}

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

.page-about__advantage-list,
.page-about__responsibility-list,
.page-about__contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  color: #FFF6D6;
}

.page-about__advantage-list li,
.page-about__responsibility-list li,
.page-about__contact-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-about__advantage-list li::before,
.page-about__responsibility-list li::before,
.page-about__contact-list li::before {
  content: '✓';
  color: #FFD36B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E;
  font-weight: bold;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}
.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  text-align: left;
}

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

.page-about__faq-answer strong {
  color: #FFD36B;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 22px;
  }
  .page-about__text-block {
    font-size: 15px;
  }

  /* Hero Section Mobile */
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-image img {
    border-radius: 8px;
  }
  .page-about__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .page-about__hero-description {
    font-size: clamp(15px, 3vw, 18px);
  }
  .page-about__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-about__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 18px;
  }

  /* Grid Layouts Mobile */
  .page-about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-about__grid-item:first-child {
    order: unset;
  }
  .page-about__grid-item:last-child {
    order: unset;
  }
  .page-about__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-about__advantages-grid .page-about__advantage-item:nth-child(even) {
    order: unset;
  }
  .page-about__advantages-grid .page-about__advantage-item:nth-child(odd) {
    order: unset;
  }
  .page-about__advantage-item:last-child {
    padding: 0;
  }

  /* Image Responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-about__container,
  .page-about__hero-container,
  .page-about__hero-cta-buttons,
  .page-about__advantage-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__faq-item summary.page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
  }
  .page-about__faq-answer {
    padding: 0 15px 15px;
  }
}