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

.page-about__section {
  padding: 60px 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

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

.page-about__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Primary Color */
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD36B; /* Auxiliary Color */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-about__description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #FFF6D6;
}

.page-about__text-main {
  color: #FFF6D6;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

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

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

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

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

.page-about__main-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.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__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

/* Content Wrappers */
.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__text-block {
  flex: 1;
  min-width: 300px;
  color: #FFF6D6;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #3A2A12; /* Border */
}

.page-about__reverse-order {
  flex-direction: row-reverse;
}

/* Introduction Section */
.page-about__introduction p {
  margin-bottom: 15px;
}

/* History Section */
.page-about__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-about__list li::before {
  content: '✓';
  color: #F2C14E; /* Primary Color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Vision Mission */
.page-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-about__card-title {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 15px;
}

/* Core Values */
.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__value-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-about__value-item img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  display: inline-block;
  border-radius: 0;
  border: none;
}

.page-about__value-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 10px;
}

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

.page-about__product-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  color: #FFF6D6;
}

.page-about__product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: none;
}

.page-about__product-title {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 15px;
}

.page-about__product-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-about__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #111111;
  color: #F2C14E; /* Primary Color */
  border: 2px solid #F2C14E;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.5);
}

/* Security Section */
.page-about__security .page-about__text-block p {
  margin-bottom: 15px;
}

/* Responsible Gaming */
.page-about__responsible-gaming .page-about__text-block p {
  margin-bottom: 15px;
}

/* FAQ Section */
.page-about__faq-section {
  background-color: #0A0A0A;
}

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
}

details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}

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: #FFD36B; /* Auxiliary Color */
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Primary Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 20px 20px;
  background: rgba(17, 17, 17, 0.8); /* Slightly lighter than card BG */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
}

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

/* CTA Bottom Section */
.page-about__cta-bottom {
  text-align: center;
  background-color: #0A0A0A;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-about__cta-container {
  max-width: 900px;
}

.page-about__cta-bottom .page-about__section-title {
  color: #F2C14E;
}

.page-about__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

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

.page-about__card-bg {
  background-color: #0A0A0A; /* Use main background for sections with cards */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__section-title {
    font-size: 32px;
  }
  .page-about__hero-content .page-about__main-title {
    font-size: clamp(28px, 4vw, 42px);
  }
  .page-about__hero-description {
    font-size: clamp(15px, 1.8vw, 18px);
  }
  .page-about__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__reverse-order {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 15px;
  }
  .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(26px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: clamp(14px, 3.5vw, 16px);
    margin-bottom: 25px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-about__sub-title {
    font-size: 20px;
  }
  .page-about__image-block img {
    border-radius: 6px;
  }
  .page-about__values-grid, .page-about__products-grid, .page-about__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__value-item, .page-about__product-card, .page-about__card {
    padding: 20px;
  }
  .page-about__product-card img {
    
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  .page-about__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__cta-bottom .page-about__cta-button {
    width: 100%;
  }
  /* Ensure all images are responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !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;
  }
}