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

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

.page-faq-account-security__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E85 100%); /* Darker blue to slightly lighter blue for depth */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-account-security__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-account-security__hero-title .highlight {
    color: #E3B23C;
}

.page-faq-account-security__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-faq-account-security__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.page-faq-account-security__section:nth-of-type(even) {
    background-color: #f2f4f7;
}

.page-faq-account-security__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.page-faq-account-security__section-title .brand-name {
    color: #E3B23C;
}

.page-faq-account-security__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3B23C;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-faq-account-security__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.page-faq-account-security__list--contact {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
}

.page-faq-account-security__list--contact li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #0A2463;
}

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

.page-faq-account-security__btn--primary {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
}

.page-faq-account-security__btn--primary:hover {
    background-color: #F0C76C;
    transform: translateY(-2px);
}

.page-faq-account-security__btn--secondary {
    background-color: #0A2463;
    color: #E3B23C;
    border: 2px solid #0A2463;
    margin-top: 20px;
}

.page-faq-account-security__btn--secondary:hover {
    background-color: #1A3E7E;
    transform: translateY(-2px);
}

.page-faq-account-security__link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-faq-account-security__link:hover {
    color: #E3B23C;
    text-decoration: underline;
}

.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 8px 20px rgba(0, 0, 0, 0.1);
}

.page-faq-account-security__faq {
    background-color: #0A2463;
    color: #FFFFFF;
    padding: 80px 0;
}

.page-faq-account-security__faq-question {
    font-size: 1.5em;
    color: #E3B23C;
    margin-top: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #1A3E7E;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-faq-account-security__faq-question:hover {
    background-color: #304E85;
}

.page-faq-account-security__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #E3B23C;
}

.page-faq-account-security__faq-question.active::after {
    content: '-';
}

.page-faq-account-security__faq-answer {
    padding: 15px 20px;
    background-color: #1A3E7E;
    border-radius: 0 0 8px 8px;
    margin-top: -10px;
    display: none;
    color: #E0E0E0;
}

.page-faq-account-security__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-account-security__hero-title {
        font-size: 2.5em;
    }
    .page-faq-account-security__hero-subtitle {
        font-size: 1.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__faq-question {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-faq-account-security__hero-title {
        font-size: 2em;
    }
    .page-faq-account-security__hero {
        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 {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq-account-security__faq-question {
        font-size: 1.1em;
    }
}