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

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

.page-index-quick-registration .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.page-index-quick-registration .btn-primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

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

.page-index-quick-registration .btn-secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    margin-left: 15px;
}

.page-index-quick-registration .btn-secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-index-quick-registration .btn-download {
    background-color: #003366; /* Main color */
    color: #FFCC00; /* Auxiliary color for text */
    border: 2px solid #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-right: 15px;
}

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

.page-index-quick-registration .btn-download img {
    width: 24px;
    height: 24px;
    filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust icon color to match text */
}

.page-index-quick-registration .hero-section {
    background: linear-gradient(135deg, #003366, #004488);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-index-quick-registration .hero-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-index-quick-registration .hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-index-quick-registration .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    line-height: 1.2;
}

.page-index-quick-registration .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-quick-registration .hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.page-index-quick-registration .hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-index-quick-registration .section-title {
    font-size: 2.8em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-index-quick-registration .section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-quick-registration .why-choose-us-section, 
.page-index-quick-registration .registration-guide-section, 
.page-index-quick-registration .app-download-section, 
.page-index-quick-registration .faq-section {
    padding: 80px 0;
    background-color: #fff;
    margin-bottom: 20px;
}

.page-index-quick-registration .why-choose-us-section {
    background-color: #f4f7f6;
}

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

.page-index-quick-registration .feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-quick-registration .feature-item:hover {
    transform: translateY(-10px);
}

.page-index-quick-registration .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(15%) sepia(50%) saturate(600%) hue-rotate(190deg) brightness(90%) contrast(90%); /* Main color tint */
}

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

.page-index-quick-registration .feature-description {
    font-size: 1em;
    color: #666;
    text-align: left;
}

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

.page-index-quick-registration .step-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.page-index-quick-registration .step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #003366;
    color: #FFCC00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    border: 4px solid #FFCC00;
}

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

.page-index-quick-registration .step-description {
    font-size: 1em;
    color: #666;
    text-align: left;
    margin-bottom: 20px;
}

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

.page-index-quick-registration .cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-index-quick-registration .app-download-section {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

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

.page-index-quick-registration .app-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-index-quick-registration .app-download-section .section-title {
    color: #FFCC00;
    text-align: left;
}

.page-index-quick-registration .app-download-section .section-title::after {
    background-color: #FFCC00;
    left: 0;
    transform: translateX(0);
}

.page-index-quick-registration .app-download-section .section-subtitle {
    color: #e0e0e0;
    text-align: left;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

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

.page-index-quick-registration .app-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-index-quick-registration .app-benefits li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

.page-index-quick-registration .app-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.page-index-quick-registration .app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-index-quick-registration .faq-section {
    background-color: #fff;
}

.page-index-quick-registration .faq-items {
    margin-top: 40px;
}

.page-index-quick-registration .faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration .faq-question {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-quick-registration .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-index-quick-registration .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-quick-registration .faq-answer {
    font-size: 1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-index-quick-registration .faq-answer.active {
    max-height: 500px; /* Adjust based on expected content length */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-quick-registration .hero-section .container, 
    .page-index-quick-registration .app-download-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-index-quick-registration .hero-content, 
    .page-index-quick-registration .app-content {
        text-align: center;
    }

    .page-index-quick-registration .hero-actions, 
    .page-index-quick-registration .app-download-buttons {
        justify-content: center;
    }

    .page-index-quick-registration .hero-title {
        font-size: 2.5em;
    }

    .page-index-quick-registration .section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-quick-registration .hero-section, 
    .page-index-quick-registration .why-choose-us-section, 
    .page-index-quick-registration .registration-guide-section, 
    .page-index-quick-registration .app-download-section, 
    .page-index-quick-registration .faq-section {
        padding: 60px 0;
    }

    .page-index-quick-registration .hero-title {
        font-size: 2em;
    }

    .page-index-quick-registration .hero-description {
        font-size: 1em;
    }

    .page-index-quick-registration .section-title {
        font-size: 1.8em;
    }

    .page-index-quick-registration .section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-index-quick-registration .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .page-index-quick-registration .btn-secondary, 
    .page-index-quick-registration .btn-download {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-index-quick-registration .feature-title, 
    .page-index-quick-registration .step-title, 
    .page-index-quick-registration .faq-question {
        font-size: 1.5em;
    }

    .page-index-quick-registration .step-item {
        padding-top: 60px;
    }

    .page-index-quick-registration .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration .hero-actions, 
    .page-index-quick-registration .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-index-quick-registration .btn-primary, 
    .page-index-quick-registration .btn-secondary, 
    .page-index-quick-registration .btn-download {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}