.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

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

.page-about__hero-section {
  padding: 120px 0 80px; /* Desktop padding-top for fixed header */
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), #0d213a);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-about__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary color for highlight */
  font-weight: bold;
  line-height: 1.2;
}

.page-about__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__description a,
.page-about__paragraph a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-about__description a:hover,
.page-about__paragraph a:hover {
  color: #fff;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-about__btn-primary {
  background: #FFD700;
  color: #1A2E4E;
  border: 2px solid #FFD700;
}

.page-about__btn-primary:hover {
  background: #e6c200;
  color: #1A2E4E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #e0e0e0;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Dark and Light background sections for contrast */
.page-about__dark-section {
  background-color: var(--primary-color, #1A2E4E);
  color: #ffffff;
  padding: 80px 0;
}

.page-about__light-bg {
  background-color: #f8f9fa;
  color: #333333;
  padding: 80px 0;
}

.page-about__light-bg .page-about__section-title,
.page-about__light-bg .page-about__sub-title {
  color: var(--primary-color, #1A2E4E);
}

.page-about__light-bg .page-about__paragraph,
.page-about__light-bg p {
  color: #333333;
}

.page-about__light-bg ul li {
  color: #333333;
}

.page-about__mission-vision-section {
  padding: 80px 0;
}

.page-about__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__card {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
  min-height: 200px;
}

.page-about__card-title {
  font-size: 1.5em;
  color: var(--primary-color, #1A2E4E);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card p {
  font-size: 1em;
  color: #555555;
}

.page-about__why-choose-us-section {
  padding: 80px 0;
}

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

.page-about__feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

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

.page-about__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__feature-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-about__responsible-gaming-section {
  padding: 80px 0;
}

.page-about__content-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.page-about__text-block ul {
  list-style-type: disc;
  margin-left: 20px;
  padding: 0;
}

.page-about__text-block li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-about__future-outlook-section {
  padding: 80px 0;
  text-align: center;
}

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

.page-about__future-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__future-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.page-about__future-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
  min-height: 200px;
}

.page-about__future-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__future-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-about__cta-bottom {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__cta-text {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__card-title {
    font-size: 1.3em;
  }
  .page-about__feature-title,
  .page-about__future-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 60px;
  }

  .page-about__main-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .page-about__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

  .page-about__dark-section, .page-about__light-bg {
    padding: 60px 0;
  }

  .page-about__grid-two-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__card {
    padding: 25px;
  }

  .page-about__features-grid,
  .page-about__future-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-item,
  .page-about__future-item {
    padding: 25px;
  }

  .page-about__content-flex {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__text-block {
    min-width: unset;
    width: 100%;
  }

  .page-about__text-block ul {
    margin-left: 15px;
  }
  
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about__container,
  .page-about__hero-section,
  .page-about__mission-vision-section,
  .page-about__why-choose-us-section,
  .page-about__responsible-gaming-section,
  .page-about__future-outlook-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  
  .page-about__card-image,
  .page-about__feature-icon,
  .page-about__future-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-about__cta-bottom {
    margin-top: 40px;
    padding-top: 30px;
  }

  .page-about__cta-text {
    font-size: 1.2em;
  }
}