.page-promotions-birthday-gift {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-promotions-birthday-gift__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-birthday-gift__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-promotions-birthday-gift__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-birthday-gift__hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-birthday-gift__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.page-promotions-birthday-gift__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

.page-promotions-birthday-gift__section {
  padding: 60px 0;
}

.page-promotions-birthday-gift__section--alt-bg {
  background-color: #f8f9fa;
}

.page-promotions-birthday-gift h2 {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-birthday-gift h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #28a745;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-birthday-gift h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-promotions-birthday-gift p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #495057;
}

.page-promotions-birthday-gift ul,
.page-promotions-birthday-gift ol {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-birthday-gift ul li,
.page-promotions-birthday-gift ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #495057;
}

.page-promotions-birthday-gift ul li::before {
  content: '✔';
  color: #28a745;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-promotions-birthday-gift__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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-birthday-gift__btn--primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-birthday-gift__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-birthday-gift__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions-birthday-gift__center-btn {
  text-align: center;
  margin-top: 40px;
}

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

.page-promotions-birthday-gift__steps li {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-birthday-gift__steps li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-birthday-gift__step-icon {
  width: 80px;
  height: 80px;
  background-color: #e9f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid #007bff;
}

.page-promotions-birthday-gift__step-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.page-promotions-birthday-gift__steps li h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions-birthday-gift__steps li p {
  font-size: 1em;
  color: #555;
}

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

.page-promotions-birthday-gift__feature-item {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-birthday-gift__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-birthday-gift__feature-item h3 {
  color: #28a745;
  font-size: 1.6em;
}

.page-promotions-birthday-gift__feature-item p {
  font-size: 1em;
  color: #555;
}

.page-promotions-birthday-gift__responsible-gambling {
  text-align: center;
  background-color: #e9f5ff;
  padding: 80px 0;
  border-top: 5px solid #007bff;
}

.page-promotions-birthday-gift__responsible-gambling h2 {
  color: #007bff;
}

.page-promotions-birthday-gift__responsible-gambling-icon {
  width: 120px;
  height: 120px;
  margin: 30px auto;
  display: block;
  opacity: 0.8;
}

.page-promotions-birthday-gift__cta-section {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-birthday-gift__cta-content {
  position: relative;
  z-index: 2;
}

.page-promotions-birthday-gift__cta-section h2 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-birthday-gift__cta-section h2::after {
  background-color: #28a745;
}

.page-promotions-birthday-gift__cta-section p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promotions-birthday-gift__cta-image {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.2;
  transform: rotate(15deg);
  z-index: 1;
}

@media (max-width: 992px) {
  .page-promotions-birthday-gift__hero h1 {
    font-size: 2.5em;
  }
  .page-promotions-birthday-gift__hero p {
    font-size: 1.1em;
  }
  .page-promotions-birthday-gift h2 {
    font-size: 2em;
  }
  .page-promotions-birthday-gift h3 {
    font-size: 1.6em;
  }
  .page-promotions-birthday-gift__steps {
    grid-template-columns: 1fr;
  }
  .page-promotions-birthday-gift__features {
    grid-template-columns: 1fr;
  }
  .page-promotions-birthday-gift__cta-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-promotions-birthday-gift__hero {
    padding: 60px 0;
  }
  .page-promotions-birthday-gift__hero h1 {
    font-size: 2em;
  }
  .page-promotions-birthday-gift__hero p {
    font-size: 1em;
  }
  .page-promotions-birthday-gift__section {
    padding: 40px 0;
  }
  .page-promotions-birthday-gift h2 {
    font-size: 1.8em;
  }
  .page-promotions-birthday-gift__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-birthday-gift__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-birthday-gift__step-icon {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
  .page-promotions-birthday-gift__steps li h3 {
    font-size: 1.3em;
  }
  .page-promotions-birthday-gift__responsible-gambling {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-promotions-birthday-gift__hero h1 {
    font-size: 1.8em;
  }
  .page-promotions-birthday-gift__hero p {
    font-size: 0.9em;
  }
  .page-promotions-birthday-gift h2 {
    font-size: 1.5em;
  }
  .page-promotions-birthday-gift h3 {
    font-size: 1.2em;
  }
  .page-promotions-birthday-gift p,
  .page-promotions-birthday-gift ul li,
  .page-promotions-birthday-gift ol li {
    font-size: 0.95em;
  }
  .page-promotions-birthday-gift__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-birthday-gift__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-birthday-gift__step-icon {
    width: 50px;
    height: 50px;
  }
  .page-promotions-birthday-gift__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-promotions-birthday-gift__responsible-gambling-icon {
    width: 90px;
    height: 90px;
  }
}