.page-registration-login-two-factor-authentication {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-registration-login-two-factor-authentication .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-login-two-factor-authentication .hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-registration-login-two-factor-authentication .hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

.page-registration-login-two-factor-authentication .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-registration-login-two-factor-authentication .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-registration-login-two-factor-authentication .btn-primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue for contrast */
    border: 2px solid #FFCC00;
}

.page-registration-login-two-factor-authentication .btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-registration-login-two-factor-authentication .btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    margin: 0 10px;
}

.page-registration-login-two-factor-authentication .btn-secondary:hover {
    background-color: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-registration-login-two-factor-authentication .content-block {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-registration-login-two-factor-authentication .section-title {
    font-size: 2.2em;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-login-two-factor-authentication .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-registration-login-two-factor-authentication .subsection-title {
    font-size: 1.8em;
    color: #004080;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-registration-login-two-factor-authentication p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-registration-login-two-factor-authentication a {
    color: #003366;
    text-decoration: underline;
}

.page-registration-login-two-factor-authentication a:hover {
    color: #FFCC00;
    text-decoration: none;
}

.page-registration-login-two-factor-authentication .image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-registration-login-two-factor-authentication .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-login-two-factor-authentication .benefit-list, 
.page-registration-login-two-factor-authentication .step-list, 
.page-registration-login-two-factor-authentication .tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-registration-login-two-factor-authentication .benefit-list li,
.page-registration-login-two-factor-authentication .step-list li,
.page-registration-login-two-factor-authentication .tips-list li {
    background-color: #f0f8ff; /* Light blue background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid #003366;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.page-registration-login-two-factor-authentication .benefit-list li::before,
.page-registration-login-two-factor-authentication .tips-list li::before {
    content: '✔';
    color: #FFCC00;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-registration-login-two-factor-authentication .step-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFCC00;
    color: #003366;
    font-weight: bold;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-registration-login-two-factor-authentication .step-list {
    counter-reset: step-counter;
}

.page-registration-login-two-factor-authentication .cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #ccc;
}

.page-registration-login-two-factor-authentication .faq-section {
    margin-top: 60px;
}

.page-registration-login-two-factor-authentication .faq-item {
    background-color: #f0f8ff; /* Light blue background for FAQ */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.page-registration-login-two-factor-authentication .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-registration-login-two-factor-authentication .faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-registration-login-two-factor-authentication .faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFCC00;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-registration-login-two-factor-authentication .hero-title {
        font-size: 2em;
    }

    .page-registration-login-two-factor-authentication .hero-subtitle {
        font-size: 1.1em;
    }

    .page-registration-login-two-factor-authentication .section-title {
        font-size: 1.8em;
    }

    .page-registration-login-two-factor-authentication .subsection-title {
        font-size: 1.5em;
    }

    .page-registration-login-two-factor-authentication .content-block {
        padding: 20px;
    }

    .page-registration-login-two-factor-authentication .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-registration-login-two-factor-authentication .btn-secondary {
        margin: 10px 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .page-registration-login-two-factor-authentication .hero-title {
        font-size: 1.6em;
    }

    .page-registration-login-two-factor-authentication .hero-subtitle {
        font-size: 1em;
    }

    .page-registration-login-two-factor-authentication .section-title {
        font-size: 1.5em;
    }

    .page-registration-login-two-factor-authentication .subsection-title {
        font-size: 1.3em;
    }

    .page-registration-login-two-factor-authentication .faq-question {
        font-size: 1.1em;
    }

    .page-registration-login-two-factor-authentication p, 
    .page-registration-login-two-factor-authentication .benefit-list li,
    .page-registration-login-two-factor-authentication .step-list li,
    .page-registration-login-two-factor-authentication .tips-list li,
    .page-registration-login-two-factor-authentication .faq-answer {
        font-size: 0.95em;
    }
}