/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #0056B3, #003f80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFC107;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-promotions__hero-btn {
  display: inline-block;
  background-color: #FFC107;
  color: #0056B3;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-btn:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promotions__intro, .page-promotions__main-offers, .page-promotions__how-to-claim, .page-promotions__why-shbet, .page-promotions__faq {
  padding: 60px 0;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #0056B3;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__intro p, .page-promotions__how-to-claim p, .page-promotions__why-shbet p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

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

.page-promotions__feature-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-promotions__feature-item h3 {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 15px;
}

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

.page-promotions__offer-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-promotions__offer-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__offer-content h3 {
  font-size: 1.8em;
  color: #0056B3;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__offer-content h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-promotions__offer-content h3 a:hover {
  color: #FFC107;
}

.page-promotions__offer-content p {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: left;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-align: center;
  margin-top: 10px;
}

.page-promotions__btn--primary {
  background-color: #0056B3;
  color: #fff;
  border: 2px solid #0056B3;
}

.page-promotions__btn--primary:hover {
  background-color: #003f80;
  border-color: #003f80;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #fff;
  color: #0056B3;
  border: 2px solid #0056B3;
  margin-right: 15px;
}

.page-promotions__btn--secondary:hover {
  background-color: #f0f8ff;
  color: #003f80;
  border-color: #003f80;
  transform: translateY(-2px);
}

.page-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 40px;
}

.page-promotions__btn--accent {
  background-color: #FFC107;
  color: #0056B3;
  border: 2px solid #FFC107;
}

.page-promotions__btn--accent:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-promotions__how-to-claim ol {
  max-width: 800px;
  margin: 0 auto 50px;
  list-style-type: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-promotions__how-to-claim li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  text-align: left;
}

.page-promotions__how-to-claim li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0056B3;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-promotions__how-to-claim li strong {
  color: #0056B3;
}

.page-promotions__how-to-claim a {
  color: #0056B3;
  text-decoration: underline;
}

.page-promotions__how-to-claim a:hover {
  color: #FFC107;
}

.page-promotions__important-note {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin: 40px auto;
  border-radius: 8px;
  color: #856404;
  font-size: 1.1em;
  max-width: 900px;
  text-align: left;
}

.page-promotions__important-note strong {
  color: #856404;
}

.page-promotions__why-shbet ul {
  max-width: 900px;
  margin: 0 auto 30px;
  list-style: none;
  padding: 0;
}

.page-promotions__why-shbet li {
  background-color: #e9f7ff;
  border-left: 4px solid #0056B3;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #003f80;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-promotions__why-shbet li strong {
  color: #0056B3;
}

.page-promotions__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.page-promotions__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-promotions__faq-item h3 {
  font-size: 1.4em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-promotions__faq-item p {
  font-size: 1em;
  color: #666;
  text-align: left;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__offer-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__intro, .page-promotions__main-offers, .page-promotions__how-to-claim, .page-promotions__why-shbet, .page-promotions__faq {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__features {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__feature-item {
    max-width: 90%;
  }
  .page-promotions__offer-content h3 {
    font-size: 1.5em;
  }
  .page-promotions__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions__how-to-claim li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-promotions__how-to-claim li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__offer-content h3 {
    font-size: 1.3em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__btn--secondary {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-promotions__offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__offer-content p {
    text-align: center;
  }
  .page-promotions__offer-card .page-promotions__btn {
    width: 100%;
    box-sizing: border-box;
  }
}