.page-about {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF6D6;
  background-color: #0A0A0A;
}

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

.page-about__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD86A 0%, #DDA11D 100%);
  border-radius: 2px;
}

.page-about__description {
  font-size: 18px;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* 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, main offset from body */
  background-color: #0A0A0A;
  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.4);
  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: 50px;
  font-weight: 800;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-about__hero-content .page-about__description {
  font-size: 20px;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Changed to dark for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
  border: none;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 211, 107, 0.6);
}

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

.page-about__cta-button--secondary:hover {
  background: #FFD36B;
  color: #111111;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.3);
}

/* Vision Section */
.page-about__vision-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-about__vision-section .page-about__section-title {
  margin-bottom: 60px;
}

.page-about__vision-section .page-about__text-block p {
  font-size: 17px;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-about__content-grid .page-about__text-block {
  flex: 1;
}

.page-about__content-grid .page-about__image-block {
  flex: 1;
  text-align: center;
}

.page-about__content-grid .page-about__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
  padding: 80px 0;
  background-color: #111111;
}

.page-about__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__feature-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__feature-title {
  font-size: 24px;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__feature-item p {
  font-size: 16px;
  color: #FFF6D6;
  line-height: 1.7;
}

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

/* Security Section */
.page-about__security-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-about__security-section .page-about__content-grid {
  flex-direction: row-reverse;
}

.page-about__security-section .page-about__text-block p {
  font-size: 17px;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

/* Team Section */
.page-about__team-section {
  padding: 80px 0;
  background-color: #111111;
}

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

.page-about__team-member {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__team-member img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid #3A2A12;
}

.page-about__member-name {
  font-size: 22px;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__member-role {
  font-size: 16px;
  color: #FFF6D6;
}

/* Responsible Gaming Section */
.page-about__responsible-gaming-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-about__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-about__responsible-list li {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #FFF6D6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__list-icon {
  color: #FFD36B;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* FAQ Section */
.page-about__faq-section {
  padding: 80px 0;
  background-color: #111111;
}

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

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 4px 15px 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;
}

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: #111111;
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}

.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;
  border-radius: 0 0 12px 12px;
}

details.page-about__faq-item .page-about__faq-answer p {
  font-size: 16px;
  color: #FFF6D6;
  text-align: justify;
}

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

.page-about__cta-bottom-section .page-about__section-title {
  margin-bottom: 20px;
}

.page-about__cta-bottom-section .page-about__description {
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 40px;
  }
  .page-about__section-title {
    font-size: 30px;
  }
  .page-about__description {
    font-size: 16px;
  }
  .page-about__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__content-grid .page-about__image-block {
    order: -1; /* Image first on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .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__hero-content {
    padding: 0 10px;
  }
  .page-about__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-about__hero-content .page-about__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 300px !important; /* Constrain width for mobile button */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-about__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-about__description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-about__vision-section, .page-about__why-choose-us-section, .page-about__security-section, .page-about__team-section, .page-about__responsible-gaming-section, .page-about__faq-section, .page-about__cta-bottom-section {
    padding: 50px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }

  .page-about__feature-item {
    padding: 25px;
  }
  .page-about__feature-title {
    font-size: 20px;
  }
  .page-about__feature-item p {
    font-size: 15px;
  }

  .page-about__team-member {
    padding: 25px;
  }
  .page-about__member-name {
    font-size: 20px;
  }
  .page-about__member-role {
    font-size: 15px;
  }

  .page-about__responsible-list li {
    padding: 12px 15px;
    font-size: 15px;
  }
  .page-about__list-icon {
    font-size: 18px;
    margin-right: 10px;
  }

  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 20px;
  }
  details.page-about__faq-item .page-about__faq-answer p {
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__hero-image img,
  .page-about__content-grid .page-about__image-block img,
  .page-about__team-member img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__vision-section,
  .page-about__why-choose-us-section,
  .page-about__security-section,
  .page-about__team-section,
  .page-about__responsible-gaming-section,
  .page-about__faq-section,
  .page-about__cta-bottom-section,
  .page-about__container,
  .page-about__feature-list,
  .page-about__team-grid,
  .page-about__responsible-list,
  .page-about__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .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;
  }
  .page-about__cta-container,
  .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-container .page-about__cta-button {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-about__main-title {
    font-size: 28px;
  }
  .page-about__section-title {
    font-size: 24px;
  }
  .page-about__description {
    font-size: 14px;
  }
  .page-about__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-about__feature-title {
    font-size: 18px;
  }
  .page-about__feature-item p {
    font-size: 14px;
  }
  .page-about__member-name {
    font-size: 18px;
  }
  .page-about__member-role {
    font-size: 14px;
  }
  .page-about__responsible-list li {
    font-size: 14px;
  }
  .page-about__faq-qtext {
    font-size: 15px;
  }
  .page-about__faq-toggle {
    font-size: 22px;
  }
  details.page-about__faq-item .page-about__faq-answer p {
    font-size: 14px;
  }
}