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

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

.page-register-login-fabet-identity-verification__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #204a7c 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-fabet-identity-verification__hero-section::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 10s infinite ease-in-out;
}

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

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

.page-register-login-fabet-identity-verification__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-fabet-identity-verification__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-register-login-fabet-identity-verification__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    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(0, 0, 0, 0.2);
}

.page-register-login-fabet-identity-verification__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-register-login-fabet-identity-verification__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-register-login-fabet-identity-verification__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-register-login-fabet-identity-verification__section--light-bg {
    background-color: #fcfcfc;
}

.page-register-login-fabet-identity-verification__section--dark-bg {
    background-color: #0A2342;
    color: #ffffff;
}

.page-register-login-fabet-identity-verification__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-register-login-fabet-identity-verification__section-title--accent {
    color: #FFD700;
}

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

.page-register-login-fabet-identity-verification__section--dark-bg .page-register-login-fabet-identity-verification__section-title::after {
    background-color: #FFD700;
}

.page-register-login-fabet-identity-verification__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-register-login-fabet-identity-verification__section--dark-bg p {
    color: #e0e0e0;
}

.page-register-login-fabet-identity-verification__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-register-login-fabet-identity-verification__feature-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-fabet-identity-verification__section--dark-bg .page-register-login-fabet-identity-verification__feature-item {
    background-color: #1a3a60;
    color: #ffffff;
}

.page-register-login-fabet-identity-verification__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register-login-fabet-identity-verification__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-register-login-fabet-identity-verification__feature-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-register-login-fabet-identity-verification__section--dark-bg .page-register-login-fabet-identity-verification__feature-title {
    color: #FFD700;
}

.page-register-login-fabet-identity-verification__feature-item p {
    font-size: 1em;
    color: #666;
}

.page-register-login-fabet-identity-verification__section--dark-bg .page-register-login-fabet-identity-verification__feature-item p {
    color: #c0c0c0;
}

.page-register-login-fabet-identity-verification__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-register-login-fabet-identity-verification__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.page-register-login-fabet-identity-verification__step-number {
    width: 60px;
    height: 60px;
    background-color: #0A2342;
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-fabet-identity-verification__step-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-register-login-fabet-identity-verification__step-item p {
    color: #555;
    font-size: 1.05em;
}

.page-register-login-fabet-identity-verification__document-list, 
.page-register-login-fabet-identity-verification__tips-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.page-register-login-fabet-identity-verification__document-list li, 
.page-register-login-fabet-identity-verification__tips-list li {
    background-color: #f0f4f8;
    border-left: 5px solid #FFD700;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #333;
    font-size: 1em;
}

.page-register-login-fabet-identity-verification__document-list li ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.page-register-login-fabet-identity-verification__document-list li ul li {
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.page-register-login-fabet-identity-verification__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register-login-fabet-identity-verification__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-register-login-fabet-identity-verification__checklist li {
    display: flex;
    align-items: flex-start;
    background-color: #1a3a60;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-fabet-identity-verification__checklist-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-register-login-fabet-identity-verification__checklist li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-register-login-fabet-identity-verification__checklist li p {
    color: #e0e0e0;
    margin-bottom: 0;
}

.page-register-login-fabet-identity-verification__text--center {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #c0c0c0;
}

.page-register-login-fabet-identity-verification__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-register-login-fabet-identity-verification__benefit-list li {
    background-color: #f0f4f8;
    border-left: 6px solid #0A2342;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-fabet-identity-verification__benefit-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login-fabet-identity-verification__benefit-title {
    font-size: 1.6em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-register-login-fabet-identity-verification__benefit-list li p {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 0;
}

.page-register-login-fabet-identity-verification__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-register-login-fabet-identity-verification__cta-section {
    background-color: #0A2342;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.page-register-login-fabet-identity-verification__cta-text {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-register-login-fabet-identity-verification__faq-accordion {
    margin-top: 40px;
}

.page-register-login-fabet-identity-verification__faq-item {
    background-color: #1a3a60;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-fabet-identity-verification__faq-question {
    background-color: #2c5282;
    color: #FFD700;
    width: 100%;
    padding: 20px 25px;
    border: none;
    text-align: left;
    font-size: 1.25em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-register-login-fabet-identity-verification__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-register-login-fabet-identity-verification__faq-question.active {
    background-color: #3a6090;
}

.page-register-login-fabet-identity-verification__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register-login-fabet-identity-verification__faq-answer {
    background-color: #1a3a60;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-register-login-fabet-identity-verification__faq-answer p {
    color: #e0e0e0;
    padding-bottom: 20px;
    font-size: 1.05em;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-register-login-fabet-identity-verification__main-title {
        font-size: 2.5em;
    }
    .page-register-login-fabet-identity-verification__subtitle {
        font-size: 1.1em;
    }
    .page-register-login-fabet-identity-verification__section-title {
        font-size: 2em;
    }
    .page-register-login-fabet-identity-verification__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-register-login-fabet-identity-verification__step-item {
        padding: 25px;
    }
    .page-register-login-fabet-identity-verification__step-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-register-login-fabet-identity-verification__hero-section {
        padding: 60px 0;
    }
    .page-register-login-fabet-identity-verification__main-title {
        font-size: 2em;
    }
    .page-register-login-fabet-identity-verification__subtitle {
        font-size: 1em;
    }
    .page-register-login-fabet-identity-verification__section-title {
        font-size: 1.8em;
    }
    .page-register-login-fabet-identity-verification__content-section {
        padding: 40px 0;
    }
    .page-register-login-fabet-identity-verification__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-register-login-fabet-identity-verification__checklist li {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-register-login-fabet-identity-verification__checklist-icon {
        margin-bottom: 10px;
    }
    .page-register-login-fabet-identity-verification__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register-login-fabet-identity-verification__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-register-login-fabet-identity-verification__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-register-login-fabet-identity-verification__faq-answer p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-register-login-fabet-identity-verification__main-title {
        font-size: 1.8em;
    }
    .page-register-login-fabet-identity-verification__subtitle {
        font-size: 0.9em;
    }
    .page-register-login-fabet-identity-verification__section-title {
        font-size: 1.5em;
    }
    .page-register-login-fabet-identity-verification__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-register-login-fabet-identity-verification__step-title {
        font-size: 1.4em;
    }
}