/* style/register-account-verification.css */
.page-register-account-verification {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-register-account-verification__hero {
    background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Dark blue to slightly lighter blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-account-verification__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: floatEffect 8s ease-in-out infinite;
}

.page-register-account-verification__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: floatEffect 10s reverse ease-in-out infinite;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 30px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

.page-register-account-verification__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold accent */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-account-verification__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-register-account-verification__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-register-account-verification__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-register-account-verification__btn--primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-register-account-verification__btn--secondary {
    background-color: #1A237E; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.page-register-account-verification__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.6);
}

.page-register-account-verification__section {
    padding: 60px 0;
}

.page-register-account-verification__section--importance {
    background-color: #fff;
}

.page-register-account-verification__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-register-account-verification__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-register-account-verification__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 50px;
    color: #555;
}

.page-register-account-verification__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-register-account-verification__grid-item {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-register-account-verification__grid-item:hover {
    transform: translateY(-10px);
}

.page-register-account-verification__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.page-register-account-verification__item-title {
    font-size: 1.5em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 15px;
}

.page-register-account-verification__section--steps {
    background-color: #f8f8f8;
}

.page-register-account-verification__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    counter-reset: step-counter;
}

.page-register-account-verification__step {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 90px;
}

.page-register-account-verification__step-number {
    counter-increment: step-counter;
    position: absolute;
    left: 30px;
    top: 30px;
    width: 40px;
    height: 40px;
    background-color: #1A237E; /* Dark blue */
    color: #FFD700; /* Gold */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register-account-verification__step-title {
    font-size: 1.8em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 15px;
}

.page-register-account-verification__step p {
    color: #555;
    margin-bottom: 15px;
}

.page-register-account-verification__step ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

.page-register-account-verification__step ul li {
    margin-bottom: 5px;
}

.page-register-account-verification__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-register-account-verification__section--tips {
    background-color: #e3f2fd; /* Light blue tint */
}

.page-register-account-verification__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 900px;
}

.page-register-account-verification__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
    position: relative;
    padding-left: 40px;
}

.page-register-account-verification__list li::before {
    content: '✅';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.page-register-account-verification__image--large {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-register-account-verification__section--faq {
    background-color: #fff;
}

.page-register-account-verification__faq-item {
    background-color: #f0f4f7;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-register-account-verification__faq-question {
    font-size: 1.3em;
    color: #1A237E; /* Dark blue */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register-account-verification__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
}

.page-register-account-verification__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.page-register-account-verification__cta {
    background: linear-gradient(90deg, #1A237E 0%, #FFD700 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-register-account-verification__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-register-account-verification__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #eee;
}

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

    .page-register-account-verification__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-register-account-verification__grid {
        grid-template-columns: 1fr;
    }

    .page-register-account-verification__step {
        padding-left: 30px;
        align-items: center;
        text-align: center;
    }

    .page-register-account-verification__step-number {
        position: static;
        margin-bottom: 20px;
    }

    .page-register-account-verification__faq-question {
        font-size: 1.1em;
    }

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

    .page-register-account-verification__cta-text {
        font-size: 1em;
    }
}

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

    .page-register-account-verification__hero-subtitle {
        font-size: 1em;
    }

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

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

    .page-register-account-verification__item-title {
        font-size: 1.3em;
    }

    .page-register-account-verification__step-title {
        font-size: 1.5em;
    }
}