/* style/faq-account-security.css */
.page-faq-account-security {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
}

.page-faq-account-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-faq-account-security__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%); /* Gradient from main to slightly lighter dark blue */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 2px solid #FFD700;
}

.page-faq-account-security__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-faq-account-security__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-faq-account-security__content-section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-faq-account-security__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-faq-account-security__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-faq-account-security__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-faq-account-security__paragraph {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-faq-account-security__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-faq-account-security__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-faq-account-security__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-faq-account-security__list.page-faq-account-security__list--ordered {
    list-style-type: decimal;
}

.page-faq-account-security__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-faq-account-security__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-faq-account-security__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-faq-account-security__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
}

.page-faq-account-security__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-faq-account-security__btn--secondary {
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-faq-account-security__btn--secondary:hover {
    background-color: #1A3A6A; /* Slightly lighter dark blue on hover */
    transform: translateY(-3px);
}

.page-faq-account-security__cta-section {
    background-color: #1A3A6A; /* Slightly lighter dark blue for CTA */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    border-top: 2px solid #FFD700;
}

.page-faq-account-security__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-faq-account-security__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-faq-account-security__conclusion {
    font-size: 1.2em;
    line-height: 1.8;
    margin-top: 50px;
    padding: 20px;
    background-color: #1A3A6A;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #c0c0c0;
}

.page-faq-account-security a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq-account-security a:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

    .page-faq-account-security__hero-description,
    .page-faq-account-security__paragraph,
    .page-faq-account-security__list li,
    .page-faq-account-security__conclusion {
        font-size: 1em;
    }

    .page-faq-account-security__section-title {
        font-size: 2em;
    }

    .page-faq-account-security__sub-title {
        font-size: 1.5em;
    }

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

    .page-faq-account-security__cta-title {
        font-size: 2.2em;
    }

    .page-faq-account-security__cta-description {
        font-size: 1.1em;
    }
}

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

    .page-faq-account-security__hero-section {
        padding: 60px 0;
    }

    .page-faq-account-security__section-title {
        font-size: 1.8em;
    }

    .page-faq-account-security__sub-title {
        font-size: 1.3em;
    }

    .page-faq-account-security__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .page-faq-account-security__cta-title {
        font-size: 1.8em;
    }
}