/* style/index-quick-registration-entrance.css */
.page-index-quick-registration-entrance {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f9fa;
}

.page-index-quick-registration-entrance .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-index-quick-registration-entrance .hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3); /* Darker blue for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-quick-registration-entrance .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-index-quick-registration-entrance .hero-content {
  max-width: 800px;
}

.page-index-quick-registration-entrance .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFC107; /* Highlight with secondary color */
}

.page-index-quick-registration-entrance .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-quick-registration-entrance .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-index-quick-registration-entrance .btn-primary {
  background-color: #FFC107;
  color: #000000; /* Ensure high contrast with yellow */
  border: 2px solid #FFC107;
}

.page-index-quick-registration-entrance .btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-quick-registration-entrance .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-quick-registration-entrance .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-index-quick-registration-entrance .hero-image-wrapper {
  margin-top: 40px;
}

.page-index-quick-registration-entrance .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.page-index-quick-registration-entrance .why-choose-us-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-index-quick-registration-entrance .why-choose-us-section h2 {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .why-choose-us-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-quick-registration-entrance .feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-index-quick-registration-entrance .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .feature-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-quick-registration-entrance .feature-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Registration Guide Section */
.page-index-quick-registration-entrance .registration-guide-section {
  padding: 60px 0;
  background-color: #e6f2ff;
  text-align: center;
}

.page-index-quick-registration-entrance .registration-guide-section h2 {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .registration-guide-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-quick-registration-entrance .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-index-quick-registration-entrance .step-item .step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #007BFF;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-index-quick-registration-entrance .step-item h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-index-quick-registration-entrance .step-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .btn-sm {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-quick-registration-entrance .btn-outline {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
}

.page-index-quick-registration-entrance .btn-outline:hover {
  background-color: #007BFF;
  color: #ffffff;
}

/* App Download Section */
.page-index-quick-registration-entrance .app-download-section {
  background-color: #007BFF;
  color: #ffffff;
  padding: 80px 0;
}

.page-index-quick-registration-entrance .app-download-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.page-index-quick-registration-entrance .app-content {
  flex: 1;
  text-align: left;
}

.page-index-quick-registration-entrance .app-content h2 {
  font-size: 2.8em;
  color: #FFC107;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .app-content p {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .app-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-quick-registration-entrance .app-content ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-index-quick-registration-entrance .app-content ul li::before {
  content: '✓';
  color: #FFC107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-quick-registration-entrance .btn-lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-quick-registration-entrance .small-text {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 15px;
}

.page-index-quick-registration-entrance .app-image-wrapper {
  flex: 0 0 400px;
  text-align: center;
}

.page-index-quick-registration-entrance .app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Promotions & FAQ Section */
.page-index-quick-registration-entrance .promotions-faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-index-quick-registration-entrance .promotions-faq-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.page-index-quick-registration-entrance .promotions-content, 
.page-index-quick-registration-entrance .faq-content {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration-entrance .promotions-content h2, 
.page-index-quick-registration-entrance .faq-content h2 {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 25px;
}

.page-index-quick-registration-entrance .promotions-content p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-quick-registration-entrance .promotions-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-index-quick-registration-entrance .promotions-content ul li {
  font-size: 1em;
  color: #666;
  margin-bottom: 8px;
}

.page-index-quick-registration-entrance .faq-item {
  margin-bottom: 25px;
}

.page-index-quick-registration-entrance .faq-item h3 {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-index-quick-registration-entrance .faq-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.page-index-quick-registration-entrance .cta-section {
  background: linear-gradient(90deg, #007BFF, #4da3ff);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.page-index-quick-registration-entrance .cta-section h2 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFC107;
}

.page-index-quick-registration-entrance .cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* About 99ok Section */
.page-index-quick-registration-entrance .about-99ok-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-index-quick-registration-entrance .about-99ok-section h2 {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-quick-registration-entrance .about-99ok-section h3 {
  font-size: 1.8em;
  color: #007BFF;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-index-quick-registration-entrance .about-99ok-section p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-quick-registration-entrance .hero-section .container {
    flex-direction: column;
  }
  .page-index-quick-registration-entrance .app-download-section .container {
    flex-direction: column;
  }
  .page-index-quick-registration-entrance .app-image-wrapper {
    flex: none;
    margin-top: 40px;
  }
  .page-index-quick-registration-entrance .promotions-faq-section .container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-quick-registration-entrance .hero-content h1 {
    font-size: 2.5em;
  }
  .page-index-quick-registration-entrance .hero-content p {
    font-size: 1.1em;
  }
  .page-index-quick-registration-entrance .why-choose-us-section h2,
  .page-index-quick-registration-entrance .registration-guide-section h2,
  .page-index-quick-registration-entrance .app-content h2,
  .page-index-quick-registration-entrance .promotions-content h2,
  .page-index-quick-registration-entrance .faq-content h2,
  .page-index-quick-registration-entrance .cta-section h2,
  .page-index-quick-registration-entrance .about-99ok-section h2 {
    font-size: 2em;
  }
  .page-index-quick-registration-entrance .features-grid,
  .page-index-quick-registration-entrance .steps-wrapper {
    grid-template-columns: 1fr;
  }
  .page-index-quick-registration-entrance .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-quick-registration-entrance .btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-quick-registration-entrance .hero-content h1 {
    font-size: 2em;
  }
  .page-index-quick-registration-entrance .hero-content p {
    font-size: 1em;
  }
  .page-index-quick-registration-entrance .btn {
    margin: 5px;
  }
  .page-index-quick-registration-entrance .app-image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-index-quick-registration-entrance .app-image {
    width: 80%;
  }
}