/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  box-sizing: border-box;
}

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

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

.page-about__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(17, 40, 27, 0.8); /* Card BG with transparency */
  border-radius: 8px;
  margin-top: -80px; /* Overlap slightly with the image */
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.4);
}

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

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

.page-about__cta-button--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.2);
}

.page-about__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-about__section--mission {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__section--security {
  background-color: #08160F;
}

.page-about__section--products {
  background-color: #11271B; /* Card BG */
}

.page-about__section--experience {
  background-color: #08160F;
}

.page-about__section--promotions {
  background-color: #1E3A2A; /* Divider */
}

.page-about__section--support {
  background-color: #08160F;
}

.page-about__section--responsible-gambling {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__section--faq {
  background-color: #11271B; /* Card BG */
}

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-about__text-block {
  font-size: 1.05em;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__content-two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__content-two-col--reversed {
  flex-direction: row-reverse;
}

.page-about__text-col {
  flex: 1;
}

.page-about__image-col {
  flex: 1;
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-about__security-list,
.page-about__experience-list,
.page-about__support-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__list-item {
  color: #F2FFF6;
  font-size: 1em;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-about__list-item::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__text-link {
  color: #57E38D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__text-link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

.page-about__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

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

.page-about__feature-title,
.page-about__product-title,
.page-about__promo-title,
.page-about__responsible-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-about__product-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-about__product-title a:hover {
  color: #57E38D;
  text-decoration: underline;
}

.page-about__feature-text,
.page-about__product-description,
.page-about__promo-description,
.page-about__responsible-text {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-about__product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-about__promo-link {
  display: inline-block;
  color: #57E38D;
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
}

.page-about__promo-link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

.page-about__cta-container {
  text-align: center;
  margin-top: 50px;
}

.page-about__faq-list {
  margin-top: 40px;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  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;
  color: #F2FFF6;
  font-weight: 600;
  font-size: 1.1em;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D;
}

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

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  font-size: 1em;
}

.page-about__faq-answer p {
  margin: 0;
  padding: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-about__content-two-col {
    flex-direction: column;
  }

  .page-about__content-two-col--reversed {
    flex-direction: column;
  }

  .page-about__section {
    padding: 40px 15px;
  }

  .page-about__section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-about__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-about__cta-button {
    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__cta-button--small {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-about__products-grid,
  .page-about__promotions-grid,
  .page-about__responsible-features {
    grid-template-columns: 1fr;
  }

  .page-about__image,
  .page-about__hero-image,
  .page-about__product-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__hero-section,
  .page-about__section,
  .page-about__container,
  .page-about__hero-image-wrapper,
  .page-about__video-container,
  .page-about__video-wrapper,
  .page-about__cta-container,
  .page-about__features-grid,
  .page-about__products-grid,
  .page-about__promotions-grid,
  .page-about__responsible-features,
  .page-about__faq-list,
  .page-about__content-two-col {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-about__video-section {
    padding-top: 10px !important; 
  }

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

@media (max-width: 480px) {
  .page-about__hero-content {
    margin-top: -30px;
    padding: 20px 10px;
  }

  .page-about__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

  .page-about__section-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
}