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

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

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-about__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-about__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-about__description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

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

.page-about__intro-text {
  font-size: 1.3em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Vision & Mission Section */
.page-about__vision-mission {
  text-align: left;
}

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

.page-about__vision-mission .page-about__section-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-about__vision-mission .page-about__image-wrapper {
  text-align: center;
}

.page-about__vision-mission .page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Manbet Section */
.page-about__why-choose .page-about__description {
  max-width: 900px;
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-about__feature-card p {
  color: #A7D9B8; /* Text Secondary */
}

/* Games & Services Section */
.page-about__games-services .page-about__description {
  max-width: 900px;
}

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

.page-about__product-card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-about__product-card:hover {
  transform: translateY(-5px);
}

.page-about__product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-about__product-card h3,
.page-about__product-card p,
.page-about__product-card a {
  padding: 0 25px;
}

.page-about__product-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-about__product-card p {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__product-card .page-about__btn-secondary {
  margin: 0 25px 25px 25px;
  align-self: flex-start;
}

/* Security & Fairness Section */
.page-about__security-fairness .page-about__description {
  max-width: 900px;
}

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

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

.page-about__info-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__info-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-about__info-card p {
  color: #A7D9B8; /* Text Secondary */
}

/* Customer Support Section */
.page-about__customer-support {
  text-align: left;
}

.page-about__support-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-about__customer-support .page-about__image-wrapper {
  text-align: center;
}

.page-about__customer-support .page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__support-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__support-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
}

.page-about__support-list li strong {
  color: #2AD16F;
}

.page-about__customer-support .page-about__btn-primary {
  margin-top: 30px;
}

/* Responsible Gambling Section */
.page-about__responsible-gambling .page-about__description {
  max-width: 900px;
}

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

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

.page-about__item-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2AD16F;
}

.page-about__responsibility-item p {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__cta-wrapper {
  margin-top: 40px;
}

/* History & Milestones Section */
.page-about__history-milestones {
  text-align: left;
}

.page-about__history-timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 0;
}

.page-about__history-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #2E7A4E; /* Border */
  transform: translateX(-50%);
}

.page-about__timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 10px 0;
}

.page-about__timeline-item:nth-child(odd) {
  text-align: left;
  padding-right: 250px;
}

.page-about__timeline-item:nth-child(even) {
  text-align: right;
  padding-left: 250px;
}

.page-about__timeline-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: #2AD16F;
  color: #08160F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 0 0 5px #08160F;
}

.page-about__timeline-item:nth-child(odd) .page-about__timeline-content {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__timeline-item:nth-child(even) .page-about__timeline-content {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__timeline-content h3 {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-about__timeline-content p {
  color: #A7D9B8; /* Text Secondary */
}

.page-about__history-image {
  margin-top: 60px;
  text-align: center;
}

.page-about__history-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-about__faq-section .page-about__section-title {
  margin-bottom: 40px;
}

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

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  list-style: none; /* For details/summary */
}

.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: #2AD16F;
}

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

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

/* Call to Action Section */
.page-about__cta-section {
  padding: 80px 0;
}

.page-about__cta-content {
  max-width: 800px;
}

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

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

/* Images */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-about__content-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .page-about__content-grid .page-about__image-wrapper {
    order: 2;
  }

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

  .page-about__customer-support .page-about__support-content {
    grid-template-columns: 1fr 1fr;
  }

  .page-about__customer-support .page-about__image-wrapper {
    order: 1;
  }

  .page-about__customer-support .page-about__text-block {
    order: 2;
  }

  .page-about__timeline-item:nth-child(odd) .page-about__timeline-content {
    margin-right: 80px;
  }

  .page-about__timeline-item:nth-child(even) .page-about__timeline-content {
    margin-left: 80px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__section-title {
    font-size: 2em;
  }

  .page-about__sub-title {
    font-size: 1.5em;
  }

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

  .page-about__intro-text {
    font-size: 1em;
  }

  .page-about__hero-content {
    padding: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    margin-bottom: 15px;
    max-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__product-card .page-about__btn-secondary {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px) !important;
  }

  .page-about__product-card h3,
  .page-about__product-card p,
  .page-about__product-card a {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__features-grid,
  .page-about__product-grid,
  .page-about__info-grid,
  .page-about__responsibility-grid {
    grid-template-columns: 1fr;
  }

  .page-about__timeline-item:nth-child(odd),
  .page-about__timeline-item:nth-child(even) {
    padding: 0 15px;
    text-align: left;
  }

  .page-about__history-timeline::before {
    left: 15px;
    transform: translateX(0);
  }

  .page-about__timeline-year {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
    font-size: 1.5em;
    float: left;
    margin-right: 15px;
  }

  .page-about__timeline-content {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

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

  .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-section,
  .page-about__hero-image-wrapper,
  .page-about__hero-content,
  .page-about__content-grid,
  .page-about__text-block,
  .page-about__image-wrapper,
  .page-about__features-grid,
  .page-about__feature-card,
  .page-about__product-grid,
  .page-about__product-card,
  .page-about__info-grid,
  .page-about__info-card,
  .page-about__support-content,
  .page-about__responsibility-grid,
  .page-about__responsibility-item,
  .page-about__history-timeline,
  .page-about__timeline-item,
  .page-about__timeline-content,
  .page-about__faq-list,
  .page-about__faq-item,
  .page-about__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-about__hero-image-wrapper {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  .page-about__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-about__section.page-about__vision-mission .page-about__container,
  .page-about__section.page-about__customer-support .page-about__container,
  .page-about__section.page-about__history-milestones .page-about__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-about__section.page-about__vision-mission .page-about__content-grid > div,
  .page-about__section.page-about__customer-support .page-about__support-content > div {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__timeline-year {
    float: none;
    margin: 0 auto 15px auto;
  }

  .page-about__timeline-item:nth-child(odd) .page-about__timeline-content,
  .page-about__timeline-item:nth-child(even) .page-about__timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
}