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

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A2463, #FFD700);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:bj38,abstract_pattern,geometric_lines,dark_blue_gold]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.page-promotions__hero-section .page-promotions__container {
  position: relative;
  z-index: 2;
}

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

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #e0e0e0;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  font-size: 1em;
}

.page-promotions__btn--secondary:hover {
  background-color: #1a3a7c;
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

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

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

.page-promotions__section-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: -20px auto 50px;
  color: #555;
}

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

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

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

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

.page-promotions__feature-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  color: #666;
  font-size: 0.95em;
}

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

.page-promotions__offer-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  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 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-promotions__offer-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions__offer-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__offer-title a:hover {
  color: #FFD700;
}

.page-promotions__offer-description {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions__step-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fcfcfc;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid #eee;
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A2463;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  border: 3px solid #0A2463;
}

.page-promotions__step-title {
  font-size: 1.7em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions__step-text {
  color: #666;
  font-size: 1em;
}

.page-promotions__step-text a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__step-text a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

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

.page-promotions__list li {
  background-color: #fcfcfc;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #FFD700;
}

.page-promotions__list-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promotions__list-text {
  color: #555;
  font-size: 1em;
}

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

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

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

.page-promotions__safety-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions__safety-text {
  color: #666;
  font-size: 0.95em;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  background-color: #0A2463;
  color: #fff;
  padding: 18px 25px;
  margin: 0;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #444;
  font-size: 1em;
  background-color: #fcfcfc;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-promotions__conclusion {
  text-align: center;
  padding: 80px 0;
  background-color: #0A2463;
  color: #fff;
}

.page-promotions__conclusion .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__conclusion .page-promotions__section-title::after {
  background-color: #fff;
}

.page-promotions__conclusion .page-promotions__section-intro {
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-promotions__conclusion a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__conclusion a:hover {
  color: #fff;
}

.page-promotions__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0A2463;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  animation: page-promotions-float 2s ease-in-out infinite;
}

.page-promotions__floating-ad-text {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFD700;
}

.page-promotions__btn--floating {
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 50px;
}

.page-promotions__btn--floating:hover {
  background-color: #e6c200;
}

@keyframes page-promotions-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offer-grid,
  .page-promotions__features-grid,
  .page-promotions__steps,
  .page-promotions__safety-points {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__floating-ad {
    flex-direction: column;
    text-align: center;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 40px);
    max-width: 300px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__offer-grid,
  .page-promotions__features-grid,
  .page-promotions__steps,
  .page-promotions__safety-points {
    grid-template-columns: 1fr;
  }
  .page-promotions__offer-image {
    height: 180px;
  }
  .page-promotions__offer-title {
    font-size: 1.5em;
  }
  .page-promotions__floating-ad {
    width: calc(100% - 20px);
    max-width: unset;
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
}