/* style/index-quick-registration-entry.css */
.page-index-quick-registration-entry {
  font-family: 'Arial', sans-serif;
  color: #1A2E4E; /* Dark blue for main text */
  line-height: 1.6;
}

.page-index-quick-registration-entry__hero {
  background: linear-gradient(135deg, #1A2E4E 0%, #3a5c8e 100%); /* Dark blue gradient */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF; /* White text on dark background */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-quick-registration-entry__hero-content {
  max-width: 900px;
  z-index: 2;
}

.page-index-quick-registration-entry__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-index-quick-registration-entry__hero-title .highlight {
  color: #FFFFFF;
}

.page-index-quick-registration-entry__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-quick-registration-entry__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-index-quick-registration-entry__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-quick-registration-entry__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-quick-registration-entry__section-title {
  font-size: 2.5em;
  color: #1A2E4E; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-quick-registration-entry__section-title .highlight {
  color: #FFD700; /* Gold highlight */
}

.page-index-quick-registration-entry__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-index-quick-registration-entry__section-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: -20px auto 60px auto;
  color: #333;
}

.page-index-quick-registration-entry__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-index-quick-registration-entry__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E4E; /* Dark blue text on gold */
}

.page-index-quick-registration-entry__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-quick-registration-entry__button--secondary {
  background-color: #1A2E4E; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-index-quick-registration-entry__button--secondary:hover {
  background-color: #0d1e3a;
  transform: translateY(-2px);
}

.page-index-quick-registration-entry__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-quick-registration-entry__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-quick-registration-entry__benefit-item {
  background-color: #F8F9FA;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-index-quick-registration-entry__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration-entry__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-quick-registration-entry__benefit-title {
  font-size: 1.5em;
  color: #1A2E4E;
  margin-bottom: 15px;
}

.page-index-quick-registration-entry__benefit-text {
  color: #555;
  font-size: 0.95em;
}

.page-index-quick-registration-entry__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-index-quick-registration-entry__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  border-top: 5px solid #FFD700; /* Gold border top */
}

.page-index-quick-registration-entry__step-number {
  font-size: 3em;
  color: #FFD700; /* Gold number */
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1;
}

.page-index-quick-registration-entry__step-title {
  font-size: 1.8em;
  color: #1A2E4E;
  margin-bottom: 15px;
}

.page-index-quick-registration-entry__step-text {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-index-quick-registration-entry__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

.page-index-quick-registration-entry__faq-list {
  margin-top: 40px;
}

.page-index-quick-registration-entry__faq-item {
  background-color: #F8F9FA;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #1A2E4E; /* Dark blue accent */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration-entry__faq-question {
  font-size: 1.25em;
  color: #1A2E4E;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-index-quick-registration-entry__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  display: none; /* Initially hidden */
}

.page-index-quick-registration-entry__faq-item.active .page-index-quick-registration-entry__faq-answer {
  display: block;
}

.page-index-quick-registration-entry__section--responsible-gambling {
  background-color: #F0F4F8;
  padding: 80px 20px;
}

.page-index-quick-registration-entry__responsible-gambling-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-quick-registration-entry__responsible-gambling-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-index-quick-registration-entry__responsible-gambling-text {
  flex: 2 1 400px;
  color: #333;
}

.page-index-quick-registration-entry__subtitle {
  font-size: 1.7em;
  color: #1A2E4E;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index-quick-registration-entry__responsible-gambling-text ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-index-quick-registration-entry__responsible-gambling-text li {
  margin-bottom: 10px;
  color: #444;
}

.page-index-quick-registration-entry__section--cta {
  text-align: center;
  background-color: #1A2E4E; /* Dark blue background for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-index-quick-registration-entry__section--cta .page-index-quick-registration-entry__section-title {
  color: #FFD700; /* Gold title on dark blue */
}

.page-index-quick-registration-entry__section--cta .page-index-quick-registration-entry__section-title::after {
  background-color: #FFFFFF; /* White underline */
}

.page-index-quick-registration-entry__section--cta .page-index-quick-registration-entry__section-intro {
  color: #E0E0E0;
  margin-bottom: 50px;
}

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

.page-index-quick-registration-entry__info-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-index-quick-registration-entry__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration-entry__info-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-quick-registration-entry__info-card-title {
  font-size: 1.4em;
  color: #1A2E4E;
  margin-bottom: 15px;
}

.page-index-quick-registration-entry__info-card-text {
  color: #555;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-index-quick-registration-entry__link {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-quick-registration-entry__link:hover {
  color: #1A2E4E; /* Dark blue on hover */
  text-decoration: underline;
}

.page-index-quick-registration-entry__outro-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 60px;
  color: #333;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-registration-entry__hero-title {
    font-size: 2.8em;
  }
  .page-index-quick-registration-entry__section-title {
    font-size: 2em;
  }
  .page-index-quick-registration-entry__responsible-gambling-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-registration-entry__responsible-gambling-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-quick-registration-entry__hero {
    padding: 60px 15px;
  }
  .page-index-quick-registration-entry__hero-title {
    font-size: 2.2em;
  }
  .page-index-quick-registration-entry__hero-description {
    font-size: 1.1em;
  }
  .page-index-quick-registration-entry__section {
    padding: 40px 15px;
  }
  .page-index-quick-registration-entry__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration-entry__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-index-quick-registration-entry__steps-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index-quick-registration-entry__step-item {
    max-width: 100%;
  }
  .page-index-quick-registration-entry__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-index-quick-registration-entry__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-index-quick-registration-entry__subtitle {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-index-quick-registration-entry__hero-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration-entry__section-title {
    font-size: 1.5em;
  }
  .page-index-quick-registration-entry__benefit-title,
  .page-index-quick-registration-entry__step-title,
  .page-index-quick-registration-entry__faq-question,
  .page-index-quick-registration-entry__info-card-title {
    font-size: 1.2em;
  }
  .page-index-quick-registration-entry__button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}