.page-resources-faq-lottery {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-resources-faq-lottery__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-resources-faq-lottery__hero-content {
  z-index: 10;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-faq-lottery__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-resources-faq-lottery__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

.page-resources-faq-lottery__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-faq-lottery__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-resources-faq-lottery__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-faq-lottery__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-resources-faq-lottery__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-faq-lottery__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

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

.page-resources-faq-lottery__faq-item {
  background-color: #f2f2f2;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}

.page-resources-faq-lottery__faq-item:hover {
  transform: translateY(-5px);
}

.page-resources-faq-lottery__question {
  background-color: #007bff;
  color: #ffffff;
  padding: 20px 30px;
  font-size: 1.25em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-faq-lottery__question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-faq-lottery__faq-item details[open] .page-resources-faq-lottery__question {
  background-color: #0056b3;
}

.page-resources-faq-lottery__faq-item details[open] .page-resources-faq-lottery__question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-faq-lottery__answer {
  padding: 25px 30px;
  background-color: #ffffff;
  font-size: 1.05em;
  color: #444;
  border-top: 1px solid #e0e0e0;
}

.page-resources-faq-lottery__answer p {
  margin-bottom: 15px;
}

.page-resources-faq-lottery__answer-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-faq-lottery__inline-cta {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-faq-lottery__inline-cta:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-faq-lottery__cta-banner {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
  margin-top: 40px;
}

.page-resources-faq-lottery__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107;
}

.page-resources-faq-lottery__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-faq-lottery__cta-button--large {
  padding: 18px 45px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-faq-lottery__hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .page-resources-faq-lottery__title {
    font-size: 2.5em;
  }

  .page-resources-faq-lottery__subtitle {
    font-size: 1.1em;
  }

  .page-resources-faq-lottery__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

  .page-resources-faq-lottery__question {
    font-size: 1.1em;
    padding: 18px 25px;
  }

  .page-resources-faq-lottery__answer {
    padding: 20px 25px;
    font-size: 1em;
  }

  .page-resources-faq-lottery__cta-title {
    font-size: 2.2em;
  }

  .page-resources-faq-lottery__cta-description {
    font-size: 1.1em;
  }

  .page-resources-faq-lottery__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-faq-lottery__hero {
    padding: 40px 0;
    min-height: 300px;
  }

  .page-resources-faq-lottery__title {
    font-size: 2em;
  }

  .page-resources-faq-lottery__subtitle {
    font-size: 0.95em;
  }

  .page-resources-faq-lottery__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-faq-lottery__section-title {
    font-size: 1.8em;
  }

  .page-resources-faq-lottery__question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-faq-lottery__answer {
    padding: 15px 20px;
  }

  .page-resources-faq-lottery__cta-title {
    font-size: 1.8em;
  }

  .page-resources-faq-lottery__cta-description {
    font-size: 1em;
  }

  .page-resources-faq-lottery__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}