/* style/index-quick-registration.css */
.page-index-quick-registration {
  font-family: 'Arial', sans-serif;
  color: #0A244A; /* Dark blue for main text */
  line-height: 1.6;
  background-color: #F8F8F8; /* Light background for readability */
}

.page-index-quick-registration__hero {
  background: linear-gradient(135deg, #0A244A, #1a3e74); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-index-quick-registration__hero-content {
  max-width: 900px;
  z-index: 1;
}

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

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

.page-index-quick-registration__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 500px;
  opacity: 0.7;
  z-index: 0;
}

.page-index-quick-registration__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-index-quick-registration__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text on gold */
}

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

.page-index-quick-registration__btn--secondary {
  background-color: #0A244A; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-index-quick-registration__btn--secondary:hover {
  background-color: #1a3e74;
  transform: translateY(-2px);
}

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

.page-index-quick-registration__section:nth-of-type(even) {
  background-color: #F0F0F0;
}

.page-index-quick-registration__section-title {
  font-size: 2.5em;
  color: #0A244A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-quick-registration__section-intro-text,
.page-index-quick-registration__cta-text,
.page-index-quick-registration__app-description,
.page-index-quick-registration__app-final-note,
.page-index-quick-registration__cta-final-description,
.page-index-quick-registration__cta-final-note {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333; /* Dark gray for general text */
}

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

.page-index-quick-registration__benefit-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-quick-registration__benefit-item:hover {
  transform: translateY(-5px);
}

.page-index-quick-registration__benefit-title {
  font-size: 1.6em;
  color: #0A244A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-quick-registration__benefit-text {
  font-size: 1em;
  color: #555555;
}

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

.page-index-quick-registration__method-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-quick-registration__method-title {
  font-size: 1.8em;
  color: #0A244A;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-index-quick-registration__method-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-index-quick-registration__app-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-quick-registration__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
}

.page-index-quick-registration__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration__app-subtitle {
  font-size: 1.4em;
  color: #0A244A;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-quick-registration__app-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-index-quick-registration__app-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

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

.page-index-quick-registration__responsible-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-index-quick-registration__responsible-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  color: #333333;
}

.page-index-quick-registration__responsible-subtitle {
  font-size: 1.5em;
  color: #0A244A;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-quick-registration__responsible-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-index-quick-registration__responsible-list li {
  margin-bottom: 8px;
  font-size: 1em;
}

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

.page-index-quick-registration__faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__faq-question {
  font-size: 1.3em;
  color: #0A244A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-quick-registration__faq-answer {
  font-size: 0.95em;
  color: #555555;
}

.page-index-quick-registration__section--cta-final {
  text-align: center;
  background-color: #0A244A;
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-index-quick-registration__section--cta-final .page-index-quick-registration__section-title {
  color: #FFD700;
}

.page-index-quick-registration__section--cta-final .page-index-quick-registration__section-title::after {
  background-color: #FFFFFF;
}

.page-index-quick-registration__cta-final-description {
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-index-quick-registration__cta-final-note {
  color: #E0E0E0;
  margin-top: 20px;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-registration__hero-title {
    font-size: 2.5em;
  }
  .page-index-quick-registration__hero-description {
    font-size: 1.1em;
  }
  .page-index-quick-registration__hero-image-wrapper {
    width: 50%;
  }
  .page-index-quick-registration__section-title {
    font-size: 2em;
  }
  .page-index-quick-registration__app-content,
  .page-index-quick-registration__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-quick-registration__app-image-wrapper,
  .page-index-quick-registration__responsible-image {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-index-quick-registration__hero {
    padding: 60px 15px;
  }
  .page-index-quick-registration__hero-title {
    font-size: 2em;
  }
  .page-index-quick-registration__hero-description {
    font-size: 1em;
  }
  .page-index-quick-registration__hero-image-wrapper {
    display: none; /* Hide hero image on very small screens */
  }
  .page-index-quick-registration__section {
    padding: 40px 15px;
  }
  .page-index-quick-registration__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration__benefits-grid,
  .page-index-quick-registration__registration-methods,
  .page-index-quick-registration__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-index-quick-registration__method-image {
    max-width: 250px;
  }
  .page-index-quick-registration__app-list,
  .page-index-quick-registration__responsible-list {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-index-quick-registration__hero-title {
    font-size: 1.8em;
  }
  .page-index-quick-registration__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-quick-registration__section-title {
    font-size: 1.5em;
  }
  .page-index-quick-registration__benefit-title,
  .page-index-quick-registration__method-title,
  .page-index-quick-registration__app-subtitle,
  .page-index-quick-registration__responsible-subtitle,
  .page-index-quick-registration__faq-question {
    font-size: 1.3em;
  }
}