.page-index-99win-user-reviews-feedback {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for readability on dark background */
  background-color: #1A2E44; /* Main dark blue background */
}

.page-index-99win-user-reviews-feedback__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-99win-user-reviews-feedback__hero-section {
  background: linear-gradient(135deg, #1A2E44, #3a5c80); /* Dark blue to slightly lighter blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Gold text for hero section title */
}

.page-index-99win-user-reviews-feedback__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-99win-user-reviews-feedback__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-index-99win-user-reviews-feedback__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-index-99win-user-reviews-feedback__content-section {
  padding: 60px 0;
  background-color: #1A2E44; /* Consistent dark blue background */
}

.page-index-99win-user-reviews-feedback__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-99win-user-reviews-feedback__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-99win-user-reviews-feedback__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray for body text */
  text-align: justify;
}

.page-index-99win-user-reviews-feedback__review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-99win-user-reviews-feedback__review-item {
  background-color: #2a4768; /* Slightly lighter dark blue for review cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-99win-user-reviews-feedback__review-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-index-99win-user-reviews-feedback__review-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for review titles */
  margin-bottom: 15px;
  text-align: center;
}

.page-index-99win-user-reviews-feedback__review-text {
  font-size: 1em;
  color: #C0C0C0; /* Lighter gray for review text */
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-99win-user-reviews-feedback__review-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-99win-user-reviews-feedback__review-image--full-width {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-index-99win-user-reviews-feedback__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-index-99win-user-reviews-feedback__list li {
  background-color: #2a4768;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-index-99win-user-reviews-feedback__list li::before {
  content: '✔️';
  margin-right: 15px;
  font-size: 1.2em;
  color: #FFD700; /* Gold checkmark */
}

.page-index-99win-user-reviews-feedback__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-index-99win-user-reviews-feedback__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-index-99win-user-reviews-feedback__cta-button--inline {
  margin-top: 20px;
  margin-right: 15px;
  display: inline-block;
}

.page-index-99win-user-reviews-feedback__cta-button--centered {
  display: block;
  margin: 40px auto;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-99win-user-reviews-feedback__main-title {
    font-size: 2.8em;
  }
  .page-index-99win-user-reviews-feedback__section-title {
    font-size: 2em;
  }
  .page-index-99win-user-reviews-feedback__review-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-99win-user-reviews-feedback__hero-section {
    padding: 60px 0;
  }
  .page-index-99win-user-reviews-feedback__main-title {
    font-size: 2.2em;
  }
  .page-index-99win-user-reviews-feedback__subtitle {
    font-size: 1.1em;
  }
  .page-index-99win-user-reviews-feedback__section-title {
    font-size: 1.8em;
  }
  .page-index-99win-user-reviews-feedback__paragraph,
  .page-index-99win-user-reviews-feedback__review-text,
  .page-index-99win-user-reviews-feedback__list li {
    font-size: 0.95em;
  }
  .page-index-99win-user-reviews-feedback__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-99win-user-reviews-feedback__hero-section {
    padding: 40px 0;
  }
  .page-index-99win-user-reviews-feedback__main-title {
    font-size: 1.8em;
  }
  .page-index-99win-user-reviews-feedback__subtitle {
    font-size: 1em;
  }
  .page-index-99win-user-reviews-feedback__section-title {
    font-size: 1.5em;
  }
  .page-index-99win-user-reviews-feedback__review-grid {
    grid-template-columns: 1fr;
  }
  .page-index-99win-user-reviews-feedback__review-item {
    padding: 20px;
  }
  .page-index-99win-user-reviews-feedback__review-title {
    font-size: 1.5em;
  }
  .page-index-99win-user-reviews-feedback__cta-button {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .page-index-99win-user-reviews-feedback__cta-button--inline {
    margin-right: 0;
  }
}