.page-promotions-free-spins {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #343a40; /* Dark gray for body text for good contrast */
  background-color: #f8f9fa; /* Light background for overall page */
}

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

.page-promotions-free-spins__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-promotions-free-spins__section:nth-of-type(even) {
  background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

.page-promotions-free-spins__heading {
  color: #0056b3; /* Darker variant of primary for headings */
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-promotions-free-spins__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Primary blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-free-spins__hero-content {
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-free-spins__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-promotions-free-spins__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0f2ff; /* Lighter white for subtitle */
}

.page-promotions-free-spins__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.2;
  width: 400px;
  height: auto;
  z-index: 5;
}

.page-promotions-free-spins__hero-image img {
  width: 100%;
  height: auto;
}

.page-promotions-free-spins__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions-free-spins__btn--primary {
  background-color: #ffc107; /* Secondary gold for primary action */
  color: #343a40; /* Dark text for gold background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-promotions-free-spins__btn--secondary {
  background-color: #007bff; /* Primary blue for secondary action */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-promotions-free-spins__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-promotions-free-spins__btn--cta {
  background-color: #28a745; /* Green for strong CTA */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins__btn--cta:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.page-promotions-free-spins__btn--download {
  background-color: #6c757d; /* Gray for download */
  color: #ffffff;
  margin-left: 15px;
}

.page-promotions-free-spins__btn--download:hover {
  background-color: #5a6268;
}

.page-promotions-free-spins__section--intro p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-free-spins__features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions-free-spins__feature-item {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-free-spins__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions-free-spins__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions-free-spins__feature-item h3 {
  color: #007bff;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions-free-spins__feature-item p {
  font-size: 0.95em;
  color: #555;
}

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

.page-promotions-free-spins__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promotions-free-spins__step-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-free-spins__step-item h3 {
  color: #ffc107; /* Secondary gold for step headings */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-free-spins__step-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions-free-spins__game-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-promotions-free-spins__game-list li {
  background-color: #ffffff;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #343a40;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-free-spins__game-list li img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

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

.page-promotions-free-spins__info-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promotions-free-spins__info-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-promotions-free-spins__info-card h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions-free-spins__info-card p {
  font-size: 1em;
  color: #555;
}

.page-promotions-free-spins__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-free-spins__terms-list li {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #ffc107;
  border-radius: 5px;
  font-size: 1.05em;
  color: #343a40;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-promotions-free-spins__terms-list li strong {
  color: #0056b3;
}

.page-promotions-free-spins__action-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-promotions-free-spins__cta-banner {
  background: linear-gradient(90deg, #007bff, #0056b3); /* Primary blue gradient */
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-free-spins__cta-banner h3 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions-free-spins__cta-banner p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0f2ff;
}

.page-promotions-free-spins__faq-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-free-spins__faq-item h3 {
  color: #007bff;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions-free-spins__faq-item p {
  font-size: 1em;
  color: #555;
  margin-top: 0;
}

.page-promotions-free-spins__final-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-free-spins__section--conclusion p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .page-promotions-free-spins__hero-title {
    font-size: 3em;
  }
  .page-promotions-free-spins__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-free-spins__heading {
    font-size: 2em;
  }
  .page-promotions-free-spins__features, .page-promotions-free-spins__steps, .page-promotions-free-spins__info-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-free-spins__hero-image {
    width: 300px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-free-spins__hero {
    padding: 80px 0;
  }
  .page-promotions-free-spins__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-free-spins__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-free-spins__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-free-spins__cta-banner h3 {
    font-size: 1.8em;
  }
  .page-promotions-free-spins__cta-banner p {
    font-size: 1.1em;
  }
  .page-promotions-free-spins__hero-image {
    display: none;
  }
}

@media (max-width: 576px) {
  .page-promotions-free-spins__section {
    padding: 40px 0;
  }
  .page-promotions-free-spins__hero-title {
    font-size: 2em;
  }
  .page-promotions-free-spins__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-free-spins__heading {
    font-size: 1.8em;
  }
  .page-promotions-free-spins__final-cta .page-promotions-free-spins__btn {
    display: block;
    margin-bottom: 15px;
    margin-left: 0;
  }
}