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

.page-promotions-terms__hero {
  background: linear-gradient(135deg, #1A2B47, #3a4f73);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-promotions-terms__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="%231A2B47"/><path d="M0 0L50 100L100 0Z" fill="%23FFD700" opacity="0.05"/><path d="M0 100L50 0L100 100Z" fill="%23FFD700" opacity="0.05"/></svg>');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-promotions-terms__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-terms__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-terms__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B47;
  padding: 15px 30px;
  border-radius: 5px;
  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-terms__hero-btn:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-promotions-terms__hero-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

.page-promotions-terms__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-terms__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-promotions-terms__section:last-of-type {
  border-bottom: none;
}

.page-promotions-terms__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-terms__section-title {
  font-size: 2.5em;
  color: #1A2B47;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-terms__sub-title {
  font-size: 1.8em;
  color: #1A2B47;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-terms p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.1em;
}

.page-promotions-terms ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-promotions-terms ul li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.05em;
}

.page-promotions-terms strong {
  color: #1A2B47;
}

.page-promotions-terms__content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions-terms__cta-btn {
  display: block;
  width: fit-content;
  margin: 30px auto;
  background-color: #1A2B47;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-terms__cta-btn:hover {
  background-color: #0d1e3a;
  color: #ffffff;
}

.page-promotions-terms__final-cta {
  background-color: #FFD700;
  color: #1A2B47;
  padding: 80px 20px;
  text-align: center;
}

.page-promotions-terms__final-cta-content {
  max-width: 900px;
}

.page-promotions-terms__final-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A2B47;
}

.page-promotions-terms__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
}

.page-promotions-terms__final-cta-btn {
  display: inline-block;
  background-color: #1A2B47;
  color: #FFD700;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-terms__final-cta-btn:hover {
  background-color: #0d1e3a;
  color: #ffffff;
}

.page-promotions-terms__final-cta-btn--secondary {
  background-color: #f0f0f0;
  color: #1A2B47;
}

.page-promotions-terms__final-cta-btn--secondary:hover {
  background-color: #e0e0e0;
  color: #0d1e3a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-terms__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-terms__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-terms__section-title {
    font-size: 2em;
  }

  .page-promotions-terms__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-terms p, .page-promotions-terms ul li {
    font-size: 1em;
  }

  .page-promotions-terms__final-cta-title {
    font-size: 2.2em;
  }

  .page-promotions-terms__final-cta-description {
    font-size: 1em;
  }

  .page-promotions-terms__final-cta-btn {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promotions-terms__hero {
    padding: 60px 15px;
  }
  .page-promotions-terms__hero-title {
    font-size: 2em;
  }
  .page-promotions-terms__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-terms__section {
    padding: 40px 0;
  }
  .page-promotions-terms__section-title {
    font-size: 1.8em;
  }
  .page-promotions-terms__sub-title {
    font-size: 1.3em;
  }
  .page-promotions-terms__final-cta-title {
    font-size: 1.8em;
  }
  .page-promotions-terms__final-cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-terms__hero-image-wrapper {
    margin-top: 20px;
  }
}