/* style/register-login-account-verification.css */
.page-register-login-account-verification {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #1A237E;
}

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

.page-register-login-account-verification .hero-section {
    background: linear-gradient(135deg, #1A237E, #3b42a8);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-account-verification .hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-register-login-account-verification .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-register-login-account-verification .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-register-login-account-verification .btn-primary {
    background-color: #FFD700;
    color: #1A237E;
    margin-top: 20px;
}

.page-register-login-account-verification .btn-primary:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-register-login-account-verification .section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    position: relative;
}

.page-register-login-account-verification .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-register-login-account-verification .section-subtitle {
    font-size: 1.1em;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-register-login-account-verification .section-why-verify {
    padding: 80px 0;
    background-color: #2a3089;
}

.page-register-login-account-verification .grid-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-register-login-account-verification .reason-item {
    background-color: #1A237E;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-register-login-account-verification .reason-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-register-login-account-verification .reason-heading {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-register-login-account-verification .reason-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-register-login-account-verification .section-guide {
    padding: 80px 0;
    background-color: #1A237E;
}

.page-register-login-account-verification .verification-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-register-login-account-verification .step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: #2a3089;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-register-login-account-verification .step-number {
    background-color: #FFD700;
    color: #1A237E;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    flex-shrink: 0;
}

.page-register-login-account-verification .step-content {
    flex-grow: 1;
}

.page-register-login-account-verification .step-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-register-login-account-verification .step-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.page-register-login-account-verification .document-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.page-register-login-account-verification .document-list li {
    background-color: #3b42a8;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.page-register-login-account-verification .document-list li::before {
    content: '✓';
    color: #FFD700;
    margin-right: 10px;
    font-weight: bold;
}

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

.page-register-login-account-verification .guide-note {
    background-color: #FFD700;
    color: #1A237E;
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

.page-register-login-account-verification .section-benefits {
    padding: 80px 0;
    background-color: #2a3089;
}

.page-register-login-account-verification .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-register-login-account-verification .benefit-item {
    background-color: #1A237E;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-register-login-account-verification .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-register-login-account-verification .benefit-heading {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-register-login-account-verification .benefit-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-register-login-account-verification .section-faq {
    padding: 80px 0;
    background-color: #1A237E;
}

.page-register-login-account-verification .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-register-login-account-verification .faq-item {
    background-color: #2a3089;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-register-login-account-verification .faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register-login-account-verification .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-register-login-account-verification .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-register-login-account-verification .faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

.page-register-login-account-verification .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-register-login-account-verification .section-cta {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #1A237E;
}

.page-register-login-account-verification .cta-title {
    font-size: 2.8em;
    color: #1A237E;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-register-login-account-verification .cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #4a50a0;
}

.page-register-login-account-verification .btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-register-login-account-verification .btn-secondary {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #1A237E;
    margin-left: 20px;
}

.page-register-login-account-verification .btn-secondary:hover {
    background-color: #0d145c;
    color: #FFD700;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .page-register-login-account-verification .hero-title {
        font-size: 2.5em;
    }

    .page-register-login-account-verification .hero-description {
        font-size: 1em;
    }

    .page-register-login-account-verification .section-title {
        font-size: 2em;
    }

    .page-register-login-account-verification .grid-reasons, .page-register-login-account-verification .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-register-login-account-verification .step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-register-login-account-verification .step-number {
        margin: 0 auto 20px;
    }

    .page-register-login-account-verification .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-register-login-account-verification .cta-title {
        font-size: 2em;
    }
    .page-register-login-account-verification .cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-register-login-account-verification .hero-title {
        font-size: 2em;
    }
    .page-register-login-account-verification .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-account-verification .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-register-login-account-verification .btn-primary, .page-register-login-account-verification .btn-secondary {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .page-register-login-account-verification .section-title {
        font-size: 1.8em;
    }
    .page-register-login-account-verification .reason-heading, .page-register-login-account-verification .step-heading, .page-register-login-account-verification .benefit-heading {
        font-size: 1.4em;
    }
    .page-register-login-account-verification .faq-question {
        font-size: 1.2em;
    }
    .page-register-login-account-verification .cta-title {
        font-size: 1.8em;
    }
}