.page-about__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color, #FFFFFF);
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white-color, #FFFFFF);
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--white-color, #FFFFFF);
}

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

.page-about__btn-primary {
  display: inline-block;
  background: var(--primary-color, #26A9E0);
  color: var(--white-color, #FFFFFF);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background-color: #1e87b6;
}

.page-about__btn-secondary {
  display: inline-block;
  background: var(--white-color, #FFFFFF);
  color: var(--primary-color, #26A9E0);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid var(--primary-color, #26A9E0);
  margin-left: 15px;
}

.page-about__btn-secondary:hover {
  background-color: var(--primary-color, #26A9E0);
  color: var(--white-color, #FFFFFF);
}

.page-about__intro-section,
.page-about__why-zbet-section,
.page-about__responsibility-section,
.page-about__future-section {
  padding: 80px 0;
  background: var(--white-color, #FFFFFF);
  color: var(--dark-text-color, #333333);
}

.page-about__dark-section {
  background: var(--primary-color, #26A9E0);
  color: var(--white-color, #FFFFFF);
  padding: 80px 0;
}

.page-about__heading-2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color, #26A9E0);
}

.page-about__heading-2--white {
  color: var(--white-color, #FFFFFF);
}

.page-about__heading-3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary-color, #26A9E0);
}

.page-about__heading-3--white {
  color: var(--white-color, #FFFFFF);
}

.page-about__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--dark-text-color, #333333);
}

.page-about__paragraph--white {
  color: var(--white-color, #FFFFFF);
}

.page-about__paragraph--centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.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);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-about__why-zbet-item {
  background: var(--white-color, #FFFFFF);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__why-zbet-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__link-text {
  color: var(--primary-color, #26A9E0);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.page-about__link-text:hover {
  color: #1e87b6;
}

.page-about__link-text--white {
  color: var(--white-color, #FFFFFF);
}

.page-about__link-text--white:hover {
  color: #e0e0e0;
}

.page-about__video-section {
  padding: 80px 0;
  background: var(--primary-color, #26A9E0);
  text-align: center;
  color: var(--white-color, #FFFFFF);
}

.page-about__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-about__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

.page-about__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

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

.page-about__responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-about__responsibility-item {
  text-align: center;
  background: var(--white-color, #FFFFFF);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-about__responsibility-item img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__team-contact-section {
  padding: 80px 0;
  background: var(--primary-color, #26A9E0);
  color: var(--white-color, #FFFFFF);
}

.page-about__team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-about__team-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 30px;
}

.page-about__team-item img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__cta-section {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
}

.page-about__future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-about__future-item {
  text-align: center;
  background: var(--white-color, #FFFFFF);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.page-about__future-item img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__faq-section {
  padding: 80px 0;
  background: var(--white-color, #FFFFFF);
  color: var(--dark-text-color, #333333);
}

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

.page-about__faq-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: var(--white-color, #FFFFFF);
  border-bottom: 1px solid #e0e0e0;
}

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

.page-about__faq-question .page-about__heading-3 {
  margin: 0;
  color: var(--dark-text-color, #333333);
  font-size: 1.2em;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color, #26A9E0);
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f9f9f9;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important;
  padding: 20px 25px;
}

.page-about__faq-answer .page-about__paragraph {
  margin-bottom: 0;
  color: var(--dark-text-color, #333333);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }

  .page-about__heading-2 {
    font-size: 2em;
  }

  .page-about__heading-3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__intro-grid,
  .page-about__responsibility-grid,
  .page-about__team-grid,
  .page-about__future-grid {
    grid-template-columns: 1fr;
  }

  .page-about__intro-section,
  .page-about__why-zbet-section,
  .page-about__responsibility-section,
  .page-about__team-contact-section,
  .page-about__future-section,
  .page-about__faq-section,
  .page-about__video-section {
    padding: 50px 0;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100%;
    margin-left: 0;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__container {
    padding: 0 15px;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-about__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__why-zbet-item,
  .page-about__responsibility-item,
  .page-about__team-item,
  .page-about__future-item {
    padding: 20px;
  }

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

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

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

  .page-about__faq-question .page-about__heading-3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__heading-2 {
    font-size: 1.8em;
  }

  .page-about__heading-3 {
    font-size: 1.3em;
  }

  .page-about__paragraph {
    font-size: 1em;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 12px 20px;
  }
}