.page-faq-account-security {
    color: #ffffff; /* Light text for dark body background */
    padding-top: var(--header-offset, 120px);
    font-family: Arial, sans-serif;
}

.page-faq-account-security__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0; /* Hero section itself might not need padding-top */
    background-color: #000000;
}

.page-faq-account-security__hero-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-faq-account-security__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6;
}

.page-faq-account-security__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 90%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-faq-account-security__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FCBC45;
    line-height: 1.2;
}

.page-faq-account-security__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-faq-account-security__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-faq-account-security__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.page-faq-account-security__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-faq-account-security__button--register:hover {
    background-color: #f0f0f0;
}

.page-faq-account-security__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-faq-account-security__button--login:hover {
    background-color: #e0a030;
}

.page-faq-account-security__faq-section,
.page-faq-account-security__promo-cta-section {
    padding: 60px 20px;
    background-color: #0d0d0d; /* Slightly lighter dark background for sections */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-faq-account-security__section-title {
    font-size: 2.2em;
    color: #FCBC45;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-faq-account-security__faq-list {
    margin-top: 30px;
}

.page-faq-account-security__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq-account-security__faq-question {
    font-size: 1.3em;
    color: #ffffff;
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 0;
}

.page-faq-account-security__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-faq-account-security__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-faq-account-security__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #cccccc;
    font-size: 1.05em;
}

.page-faq-account-security__faq-answer.open {
    max-height: 500px; /* Adjust based on content */
    padding: 15px 25px 25px;
}

.page-faq-account-security__faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-faq-account-security__link-text {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

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

.page-faq-account-security__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 25px;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px;
    object-fit: cover;
}

.page-faq-account-security__contact-support {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq-account-security__contact-description,
.page-faq-account-security__promo-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-faq-account-security__button--support {
    background-color: #FCBC45;
    color: #000000;
}

.page-faq-account-security__button--support:hover {
    background-color: #e0a030;
}

.page-faq-account-security__promo-cta-section {
    text-align: center;
    background-color: #000000;
}

.page-faq-account-security__promo-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-faq-account-security__button--download {
    background-color: #FFFFFF;
    color: #000000;
}

.page-faq-account-security__button--download:hover {
    background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-account-security {
        padding-top: var(--header-offset, 120px); /* Ensure mobile also respects header offset */
    }

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

    .page-faq-account-security__hero-description {
        font-size: 1em;
    }

    .page-faq-account-security__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq-account-security__button {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-faq-account-security__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq-account-security__faq-answer {
        padding: 0 20px;
    }

    .page-faq-account-security__faq-answer.open {
        padding: 10px 20px 20px;
    }

    .page-faq-account-security__image-content {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-faq-account-security__contact-description,
    .page-faq-account-security__promo-description {
        font-size: 1em;
    }

    .page-faq-account-security__promo-actions {
        flex-direction: column;
        gap: 15px;
    }
}

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

    .page-faq-account-security__hero-description {
        font-size: 0.9em;
    }

    .page-faq-account-security__button {
        width: 90%;
    }

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

    .page-faq-account-security__faq-question {
        font-size: 1em;
    }
}