/* style/index-quick-registration-guide.css */
.page-index-quick-registration-guide {
    font-family: 'Arial', sans-serif;
    color: #F5F5F5; /* Light grey for general text on dark backgrounds */
    background-color: #0A1931; /* Deep blue main background */
    line-height: 1.6;
}

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

.page-index-quick-registration-guide__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1A305A 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-quick-registration-guide__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-quick-registration-guide__subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-quick-registration-guide__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA buttons */
    color: #0A1931; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-quick-registration-guide__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-quick-registration-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-quick-registration-guide__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

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

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

.page-index-quick-registration-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-quick-registration-guide__section:last-of-type {
    border-bottom: none;
}

.page-index-quick-registration-guide__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-quick-registration-guide__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-index-quick-registration-guide__list li {
    background-color: #1A2B47; /* Slightly lighter dark blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    color: #F5F5F5;
    font-size: 1.05em;
}

.page-index-quick-registration-guide__list li strong {
    color: #FFD700;
    margin-right: 10px;
}

.page-index-quick-registration-guide__list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
}

.page-index-quick-registration-guide__list--small li {
    padding: 10px 15px;
    font-size: 1em;
}

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

.page-index-quick-registration-guide__image-right {
    text-align: right;
}

.page-index-quick-registration-guide__image-left {
    text-align: left;
}

.page-index-quick-registration-guide__step-item {
    background-color: #0A1931;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-quick-registration-guide__step-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 15px;
    text-align: center;
}

.page-index-quick-registration-guide__step-description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-quick-registration-guide__step-image {
    display: block;
    max-width: 80%;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration-guide__faq-item {
    background-color: #1A2B47;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration-guide__faq-question {
    font-size: 1.2em;
    color: #FFD700;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A2B47;
    transition: background-color 0.3s ease;
}

.page-index-quick-registration-guide__faq-question:hover {
    background-color: #2A3F60;
}

.page-index-quick-registration-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-index-quick-registration-guide__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    padding: 0 25px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-index-quick-registration-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 10px 25px 20px;
}

.page-index-quick-registration-guide__final-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, #0A1931, #2A3F60);
}

.page-index-quick-registration-guide__final-cta-content {
    max-width: 900px;
}

.page-index-quick-registration-guide__final-cta-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-quick-registration-guide__title {
        font-size: 2.2em;
    }

    .page-index-quick-registration-guide__subtitle,
    .page-index-quick-registration-guide__text {
        font-size: 1em;
    }

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

    .page-index-quick-registration-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-quick-registration-guide__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-index-quick-registration-guide__list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }

    .page-index-quick-registration-guide__step-title {
        font-size: 1.5em;
    }

    .page-index-quick-registration-guide__step-description {
        font-size: 0.95em;
    }

    .page-index-quick-registration-guide__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-quick-registration-guide__faq-answer {
        font-size: 1em;
        padding: 0 20px 15px;
    }

    .page-index-quick-registration-guide__image-right,
    .page-index-quick-registration-guide__image-left {
        text-align: center;
    }

    .page-index-quick-registration-guide__image {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration-guide__title {
        font-size: 1.8em;
    }

    .page-index-quick-registration-guide__section-title {
        font-size: 1.5em;
    }

    .page-index-quick-registration-guide__cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .page-index-quick-registration-guide__list li {
        padding: 10px;
    }

    .page-index-quick-registration-guide__step-item {
        padding: 20px;
    }

    .page-index-quick-registration-guide__step-title {
        font-size: 1.3em;
    }

    .page-index-quick-registration-guide__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
}