.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-about__section:last-of-type {
  border-bottom: none;
}

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

.page-about__story .page-about__section-title, 
.page-about__mission .page-about__section-title, 
.page-about__why-choose .page-about__section-title, 
.page-about__responsible-gaming .page-about__section-title {
    color: #1E90FF;
}

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

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

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

.page-about__text-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
}

.page-about__text-content ul {
  list-style: none;
  padding: 0;
}

.page-about__text-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

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

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

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

.page-about__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-about__grid-item h3 {
  font-size: 1.5em;
  color: #1E90FF;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-about__grid-item p {
  color: #666;
  font-size: 1em;
}

.page-about__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-about__btn--secondary {
  background-color: #1E90FF;
  color: #fff;
}

.page-about__btn--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-about__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__hero-description {
    font-size: 1.1em;
  }

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

  .page-about__content-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-about__content-flex--reverse {
    flex-direction: column;
  }

  .page-about__text-content, .page-about__image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-about__image {
    max-width: 80%;
  }

  .page-about__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-about__text-content h3 {
    font-size: 1.5em;
  }

  .page-about__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__grid {
    grid-template-columns: 1fr;
  }

  .page-about__image {
    max-width: 100%;
  }
}