.page-resources-888b-account-security {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-resources-888b-account-security__hero-section {
    position: relative;
    padding: 0; /* Adjusted for shared header offset, assuming shared.css handles body padding-top */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    overflow: hidden;
    background-color: #26A9E0; /* Brand color for hero */
    color: #ffffff;
}

.page-resources-888b-account-security__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
}

.page-resources-888b-account-security__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(38, 169, 224, 0.7), rgba(10, 10, 10, 0.9)); /* Overlay for text readability */
    z-index: 2;
}

.page-resources-888b-account-security__hero-section .page-resources-888b-account-security__container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 60px 20px;
}

.page-resources-888b-account-security__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-888b-account-security__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-resources-888b-account-security__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-888b-account-security__cta-buttons--centered {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-888b-account-security__btn-primary,
.page-resources-888b-account-security__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box;
}

.page-resources-888b-account-security__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-888b-account-security__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-resources-888b-account-security__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-888b-account-security__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-888b-account-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-resources-888b-account-security__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    color: #ffffff; /* Default for dark background */
}

.page-resources-888b-account-security__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Default for dark background */
}

.page-resources-888b-account-security__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__section-title,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__section-intro,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__feature-title,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__feature-text,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__tech-title,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__tech-text,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__faq-title,
.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__faq-answer p {
    color: #333333;
}

.page-resources-888b-account-security__light-bg .page-resources-888b-account-security__feature-icon {
    filter: none; /* Ensure no color filters on images */
}

.page-resources-888b-account-security__dark-bg {
    background-color: #0a0a0a; /* Matching body background */
    color: #ffffff;
}

.page-resources-888b-account-security__dark-bg .page-resources-888b-account-security__section-title,
.page-resources-888b-account-security__dark-bg .page-resources-888b-account-security__section-intro,
.page-resources-888b-account-security__dark-bg .page-resources-888b-account-security__measure-title,
.page-resources-888b-account-security__dark-bg .page-resources-888b-account-security__measure-text,
.page-resources-888b-account-security__dark-bg .page-resources-888b-account-security__guide-title,
.page-resources-888b-account-security__dark-bg .page-resources-888b-account-security__guide-text {
    color: #ffffff;
}

.page-resources-888b-account-security__why-important {
    padding: 80px 0;
}

.page-resources-888b-account-security__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-888b-account-security__feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-888b-account-security__feature-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 400px; /* Example max-width, adjust as needed */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-height: 200px; /* Minimum size requirement */
}

.page-resources-888b-account-security__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #26A9E0;
}

.page-resources-888b-account-security__feature-text {
    font-size: 1em;
    color: #555555;
}

.page-resources-888b-account-security__measures-section {
    padding: 80px 0;
}

.page-resources-888b-account-security__measure-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-888b-account-security__measure-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-resources-888b-account-security__measure-text {
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-resources-888b-account-security__policy-tech {
    padding: 80px 0;
}

.page-resources-888b-account-security__tech-feature {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-888b-account-security__tech-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-resources-888b-account-security__tech-text {
    font-size: 1.1em;
    color: #555555;
}

.page-resources-888b-account-security__tech-text a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-resources-888b-account-security__tech-text a:hover {
    color: #1a8cc2;
}

.page-resources-888b-account-security__login-guide {
    padding: 80px 0;
}

.page-resources-888b-account-security__guide-step {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-888b-account-security__guide-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-resources-888b-account-security__guide-text {
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-resources-888b-account-security__faq-section {
    padding: 80px 0;
}

.page-resources-888b-account-security__faq-list {
    margin-top: 40px;
}

.page-resources-888b-account-security__faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-resources-888b-account-security__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.page-resources-888b-account-security__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-888b-account-security__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: #333333;
}

.page-resources-888b-account-security__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-resources-888b-account-security__faq-item.active .page-resources-888b-account-security__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-888b-account-security__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fdfdfd;
    color: #555555;
}

.page-resources-888b-account-security__faq-item.active .page-resources-888b-account-security__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px;
}

.page-resources-888b-account-security__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: #555555;
}

.page-resources-888b-account-security__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-888b-account-security__conclusion-section .page-resources-888b-account-security__section-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto 40px auto;
    color: #f0f0f0;
}

.page-resources-888b-account-security img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* No CSS filter to change image colors */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-resources-888b-account-security__hero-section {
        min-height: 50vh;
        padding-top: var(--header-offset, 80px); /* Fallback for mobile if shared doesn't provide */
    }

    .page-resources-888b-account-security__hero-section .page-resources-888b-account-security__container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .page-resources-888b-account-security__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-resources-888b-account-security__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-resources-888b-account-security__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important;
    }

    .page-resources-888b-account-security__btn-primary,
    .page-resources-888b-account-security__btn-secondary {
        padding: 12px 20px !important;
        font-size: 1em !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto;
    }

    .page-resources-888b-account-security__container {
        padding: 30px 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-resources-888b-account-security__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-resources-888b-account-security__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-resources-888b-account-security__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-888b-account-security__feature-card,
    .page-resources-888b-account-security__measure-item,
    .page-resources-888b-account-security__tech-feature,
    .page-resources-888b-account-security__guide-step,
    .page-resources-888b-account-security__faq-item {
        padding: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-888b-account-security__feature-title,
    .page-resources-888b-account-security__measure-title,
    .page-resources-888b-account-security__tech-title,
    .page-resources-888b-account-security__guide-title,
    .page-resources-888b-account-security__faq-title {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .page-resources-888b-account-security__feature-text,
    .page-resources-888b-account-security__measure-text,
    .page-resources-888b-account-security__tech-text,
    .page-resources-888b-account-security__guide-text,
    .page-resources-888b-account-security__faq-answer p,
    .page-resources-888b-account-security__conclusion-section .page-resources-888b-account-security__section-text {
        font-size: 0.9em;
    }

    .page-resources-888b-account-security img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-resources-888b-account-security__section,
    .page-resources-888b-account-security__card,
    .page-resources-888b-account-security__feature-card,
    .page-resources-888b-account-security__measure-item,
    .page-resources-888b-account-security__tech-feature,
    .page-resources-888b-account-security__guide-step,
    .page-resources-888b-account-security__faq-item,
    .page-resources-888b-account-security__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }

    .page-resources-888b-account-security__faq-question {
        padding: 15px 20px !important;
    }
    .page-resources-888b-account-security__faq-answer {
        padding: 0 20px !important;
    }
}