/* style/promotions-first-deposit-offer-analysis.css */
.page-promotions-first-deposit-offer-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A1A1A; /* Dark background */
}

.page-promotions-first-deposit-offer-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-first-deposit-offer-analysis__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  padding: 100px 0;
  text-align: center;
  color: #1A1A1A; /* Dark text for hero section */
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-offer-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A1A; /* Dark text for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-offer-analysis__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333333; /* Slightly lighter dark text */
}

.page-promotions-first-deposit-offer-analysis__section {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-promotions-first-deposit-offer-analysis__section--dark {
  background-color: #222222;
}

.page-promotions-first-deposit-offer-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-first-deposit-offer-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Dark red underline */
  border-radius: 2px;
}

.page-promotions-first-deposit-offer-analysis__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-offer-analysis__content-wrapper p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-promotions-first-deposit-offer-analysis__content-wrapper p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-offer-analysis__content-wrapper p a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-offer-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.page-promotions-first-deposit-offer-analysis__image:hover {
  transform: translateY(-5px);
}

.page-promotions-first-deposit-offer-analysis__image--right {
  float: right;
  margin-left: 30px;
  width: 45%;
}

.page-promotions-first-deposit-offer-analysis__image--left {
  float: left;
  margin-right: 30px;
  width: 45%;
}

.page-promotions-first-deposit-offer-analysis__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%; /* Adjust as needed */
}

.page-promotions-first-deposit-offer-analysis__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-offer-analysis__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-promotions-first-deposit-offer-analysis__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-first-deposit-offer-analysis__list--bullets li::before {
  content: '•';
  color: #FFD700;
  font-size: 1.5em;
  top: -3px;
}

.page-promotions-first-deposit-offer-analysis__list--benefits li::before {
  content: '★';
  color: #FFD700;
  font-size: 1.2em;
  top: 0;
}

.page-promotions-first-deposit-offer-analysis__btn {
  display: inline-block;
  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;
  margin: 10px;
  text-align: center;
}

.page-promotions-first-deposit-offer-analysis__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text */
}

.page-promotions-first-deposit-offer-analysis__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions-first-deposit-offer-analysis__btn--secondary {
  background-color: #8B0000; /* Dark red button */
  color: #FFFFFF; /* White text */
  border: 1px solid #8B0000;
}

.page-promotions-first-deposit-offer-analysis__btn--secondary:hover {
  background-color: #A00000; /* Slightly lighter red */
  transform: translateY(-3px);
}

.page-promotions-first-deposit-offer-analysis__btn--tertiary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions-first-deposit-offer-analysis__btn--tertiary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

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

.page-promotions-first-deposit-offer-analysis__faq-item {
  background-color: #2A2A2A;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-offer-analysis__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-offer-analysis__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #CCCCCC;
}

.page-promotions-first-deposit-offer-analysis__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-promotions-first-deposit-offer-analysis__cta-content {
  max-width: 900px;
}

.page-promotions-first-deposit-offer-analysis__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-promotions-first-deposit-offer-analysis__cta-text {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-offer-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-first-deposit-offer-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-first-deposit-offer-analysis__hero-subtitle {
    font-size: 1.3em;
  }

  .page-promotions-first-deposit-offer-analysis__section-title {
    font-size: 2em;
  }

  .page-promotions-first-deposit-offer-analysis__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-first-deposit-offer-analysis__content-wrapper p,
  .page-promotions-first-deposit-offer-analysis__list li,
  .page-promotions-first-deposit-offer-analysis__faq-answer {
    font-size: 1em;
  }

  .page-promotions-first-deposit-offer-analysis__image--right,
  .page-promotions-first-deposit-offer-analysis__image--left {
    float: none;
    margin: 20px auto;
    width: 80%;
    display: block;
  }

  .page-promotions-first-deposit-offer-analysis__cta-title {
    font-size: 2.2em;
  }

  .page-promotions-first-deposit-offer-analysis__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-offer-analysis__hero {
    padding: 80px 0;
  }

  .page-promotions-first-deposit-offer-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-first-deposit-offer-analysis__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-first-deposit-offer-analysis__section {
    padding: 40px 0;
  }

  .page-promotions-first-deposit-offer-analysis__section-title {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-offer-analysis__sub-title {
    font-size: 1.3em;
  }

  .page-promotions-first-deposit-offer-analysis__btn {
    padding: 12px 20px;
    font-size: 1em;
    margin: 8px;
  }

  .page-promotions-first-deposit-offer-analysis__image--center {
    width: 90%;
  }

  .page-promotions-first-deposit-offer-analysis__cta-title {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-offer-analysis__cta-text {
    font-size: 1em;
  }

  .page-promotions-first-deposit-offer-analysis__faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-offer-analysis__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-offer-analysis__hero-subtitle {
    font-size: 0.9em;
  }

  .page-promotions-first-deposit-offer-analysis__section-title {
    font-size: 1.5em;
  }

  .page-promotions-first-deposit-offer-analysis__sub-title {
    font-size: 1.2em;
  }

  .page-promotions-first-deposit-offer-analysis__btn {
    width: 100%;
    margin: 5px 0;
  }

  .page-promotions-first-deposit-offer-analysis__cta-buttons {
    flex-direction: column;
  }

  .page-promotions-first-deposit-offer-analysis__cta-title {
    font-size: 1.5em;
  }
}