/* style/register-faq.css */

/* Base styles for the registration FAQ page */
.page-register-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-register-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-faq__hero {
    background: linear-gradient(135deg, #1A237E, #5f65a5);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-faq__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    animation: page-register-faq-pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-register-faq-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-register-faq__hero > * {
    position: relative;
    z-index: 1;
}

.page-register-faq__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-faq__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-register-faq__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-register-faq__cta-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-register-faq__cta-button--primary {
    background-color: #1A237E;
    color: #FFD700;
}

.page-register-faq__cta-button--primary:hover {
    background-color: #0d1259;
    color: #FFD700;
}

.page-register-faq__cta-button--secondary {
    background-color: #f8f9fa;
    color: #1A237E;
    border: 2px solid #1A237E;
}

.page-register-faq__cta-button--secondary:hover {
    background-color: #e0e0e0;
    border-color: #0d1259;
}

.page-register-faq__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-register-faq__section:last-child {
    border-bottom: none;
}

.page-register-faq__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-register-faq__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-register-faq__introduction p, .page-register-faq__why-register p, .page-register-faq__requirements p, .page-register-faq__security p, .page-register-faq__promotions p, .page-register-faq__customer-support p, .page-register-faq__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-register-faq__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-register-faq__list li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1.05em;
    color: #333;
}

.page-register-faq__sub-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-register-faq__sub-list li {
    background-color: transparent;
    border-left: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
}

.page-register-faq__highlight {
    color: #1A237E;
    font-weight: bold;
}

.page-register-faq__link {
    color: #1A237E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register-faq__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-register-faq__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-faq__step {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-register-faq__step:hover {
    transform: translateY(-5px);
}

.page-register-faq__step-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-register-faq__step p {
    color: #555;
}

.page-register-faq__cta-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-register-faq__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.page-register-faq__faq-question {
    background-color: #1A237E;
    color: #fff;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-register-faq__faq-question:hover {
    background-color: #0d1259;
}

.page-register-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-register-faq__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register-faq__faq-answer {
    padding: 20px;
    color: #555;
    background-color: #fefefe;
    border-top: 1px solid #eee;
    display: none;
}

.page-register-faq__faq-answer.active {
    display: block;
}

.page-register-faq__image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-register-faq__image--small {
    max-width: 80%;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-register-faq__title {
        font-size: 2.5em;
    }

    .page-register-faq__subtitle {
        font-size: 1.2em;
    }

    .page-register-faq__section-title {
        font-size: 2em;
    }

    .page-register-faq__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register-faq__step-by-step {
        grid-template-columns: 1fr;
    }

    .page-register-faq__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-register-faq__title {
        font-size: 2em;
    }

    .page-register-faq__subtitle {
        font-size: 1em;
    }

    .page-register-faq__section {
        padding: 40px 0;
    }

    .page-register-faq__section-title {
        font-size: 1.8em;
    }

    .page-register-faq__image--small {
        max-width: 100%;
    }
    .page-register-faq__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}