.page-promotions-free-spins {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-free-spins__hero {
  background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-free-spins__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-promotions-free-spins__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-30deg);
}

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

.page-promotions-free-spins__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-promotions-free-spins__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions-free-spins__section:nth-child(even) {
  background-color: #f1f7fe; /* Lighter blue background for contrast */
}

.page-promotions-free-spins__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-free-spins__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #28a745;
  border-radius: 2px;
}

.page-promotions-free-spins__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

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

.page-promotions-free-spins__benefit-card,
.page-promotions-free-spins__optimize-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions-free-spins__benefit-card:hover,
.page-promotions-free-spins__optimize-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-free-spins__benefit-icon,
.page-promotions-free-spins__optimize-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.2));
}

.page-promotions-free-spins__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-free-spins__type-card {
  background-color: #fdfdfd;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  border-left: 5px solid #007bff;
  display: flex;
  flex-direction: column;
}

.page-promotions-free-spins__type-card:last-child {
  margin-bottom: 0;
}

.page-promotions-free-spins__type-card .page-promotions-free-spins__card-title {
  font-size: 2em;
  color: #0056b3;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions-free-spins__type-card p {
  text-align: left;
  margin-bottom: 15px;
  color: #444;
}

.page-promotions-free-spins__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.page-promotions-free-spins__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
}

.page-promotions-free-spins__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-free-spins__list--large li {
  font-size: 1.1em;
}

.page-promotions-free-spins__type-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-free-spins__step-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-free-spins__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions-free-spins__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-free-spins__call-to-action {
  text-align: center;
  background: #007bff;
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
  margin-top: 40px;
}

.page-promotions-free-spins__call-to-action .page-promotions-free-spins__section-title {
  color: #fff;
}

.page-promotions-free-spins__call-to-action .page-promotions-free-spins__section-title::after {
  background-color: #28a745;
}

.page-promotions-free-spins__call-to-action .page-promotions-free-spins__description {
  color: #f0f8ff;
}

.page-promotions-free-spins__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-promotions-free-spins__btn--primary {
  background-color: #28a745;
  color: #fff;
  border: 2px solid #28a745;
}

.page-promotions-free-spins__btn--primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(40, 167, 69, 0.4);
}

.page-promotions-free-spins__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-promotions-free-spins__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #004085;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
}

.page-promotions-free-spins__btn--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-free-spins__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-free-spins__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-free-spins__section-title {
    font-size: 2em;
  }
  .page-promotions-free-spins__type-card .page-promotions-free-spins__card-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promotions-free-spins__grid,
  .page-promotions-free-spins__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-free-spins__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-free-spins__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-free-spins__section-title {
    font-size: 1.8em;
  }
  .page-promotions-free-spins__description {
    font-size: 1em;
  }
  .page-promotions-free-spins__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promotions-free-spins__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-promotions-free-spins__type-card {
    padding: 30px;
  }
  .page-promotions-free-spins__type-card .page-promotions-free-spins__card-title {
    font-size: 1.6em;
  }
  .page-promotions-free-spins__list li {
    font-size: 0.95em;
  }
  .page-promotions-free-spins__list--large li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-free-spins__hero {
    padding: 60px 0;
  }
  .page-promotions-free-spins__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-free-spins__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-free-spins__section {
    padding: 40px 0;
  }
  .page-promotions-free-spins__section-title {
    font-size: 1.5em;
  }
  .page-promotions-free-spins__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-promotions-free-spins__type-card {
    border-left: none;
    border-top: 5px solid #007bff;
  }
}