.page-about {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color from palette */
  background-color: var(--background, #08160F); /* Default background from palette */
  line-height: 1.6;
  font-size: 16px;
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

.page-about__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-about__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-about__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-about__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
  text-align: center;
}

.page-about__video-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__video-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-about__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
}

.page-about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-about__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-about__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-about__section-description {
  font-size: 1.05em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 40px;
  text-align: center;
}

.page-about__text-block {
  margin-bottom: 40px;
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-about__text-block p {
  margin-bottom: 1em;
  color: var(--text-main, #F2FFF6);
}

.page-about__text-block h3 {
  font-size: 1.4em;
  color: var(--gold, #F2C14E);
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-about__image-inline {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-about__value-list,
.page-about__advantage-list,
.page-about__security-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-about__value-item,
.page-about__advantage-item,
.page-about__security-item {
  background-color: var(--deep-green, #0A4B2C);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--glow, #57E38D);
  color: var(--text-main, #F2FFF6);
}

.page-about__value-item strong,
.page-about__advantage-item h3,
.page-about__security-item strong {
  color: var(--gold, #F2C14E);
  font-size: 1.1em;
  margin-bottom: 10px;
  display: block;
}

.page-about__faq-list {
  margin-top: 40px;
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-about__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider, #1E3A2A);
  padding-bottom: 15px;
}

.page-about__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  list-style: none;
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--glow, #57E38D);
  margin-left: 10px;
}

.page-about__faq-answer {
  padding: 10px 0 5px 0;
  color: var(--text-secondary, #A7D9B8);
  font-size: 0.95em;
}

.page-about__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }
  .page-about__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 15px;
  }
  .page-about__hero-section,
  .page-about__video-section,
  .page-about__content-area,
  .page-about__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-content {
    padding: 0 10px;
  }
  .page-about__main-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-about__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-about__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-about__text-block,
  .page-about__faq-list,
  .page-about__cta-section {
    padding: 20px;
  }
  .page-about__value-item,
  .page-about__advantage-item,
  .page-about__security-item {
    padding: 15px;
    font-size: 0.95em;
  }
  .page-about__faq-question {
    font-size: 1em;
  }
  .page-about__faq-answer {
    font-size: 0.9em;
  }

  /* Force responsive images and videos */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper,
  .page-about__hero-section,
  .page-about__hero-image-wrapper,
  .page-about__content-area,
  .page-about__text-block,
  .page-about__faq-list,
  .page-about__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
  }
  /* Button responsiveness */
  .page-about__cta-button,
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}