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

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

.page-faq-account-funds__hero {
    background: linear-gradient(135deg, #0A2463 0%, #2A4A83 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-faq-account-funds__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-faq-account-funds__hero .page-faq-account-funds__container {
    position: relative;
    z-index: 1;
}

.page-faq-account-funds__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-funds__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-faq-account-funds__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eeeeee;
}

.page-faq-account-funds__section--alt {
    background-color: #FFFFFF;
}

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

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

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

.page-faq-account-funds__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444444;
}

.page-faq-account-funds__list,
.page-faq-account-funds__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.page-faq-account-funds__list li,
.page-faq-account-funds__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444444;
}

.page-faq-account-funds__list li p,
.page-faq-account-funds__ordered-list li p {
    margin: 0;
}

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

.page-faq-account-funds__btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq-account-funds__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-faq-account-funds__btn--primary:hover {
    background-color: #e6c200;
}

.page-faq-account-funds__btn--secondary {
    background-color: #0A2463;
    color: #FFFFFF;
    border: 1px solid #0A2463;
}

.page-faq-account-funds__btn--secondary:hover {
    background-color: #1a3c7a;
    border-color: #1a3c7a;
}

.page-faq-account-funds__btn--large {
    padding: 18px 40px;
    font-size: 1.25em;
}

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

.page-faq-account-funds__inline-link:hover {
    color: #FFD700;
}

.page-faq-account-funds__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-faq-account-funds__grid--reverse {
    grid-template-areas: "image text";
}

.page-faq-account-funds__grid--reverse .page-faq-account-funds__grid-item:first-child {
    grid-area: text;
}

.page-faq-account-funds__grid--reverse .page-faq-account-funds__grid-item:last-child {
    grid-area: image;
}

.page-faq-account-funds__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-faq-account-funds__image--center {
    display: block;
    margin: 30px auto;
    max-width: 80%;
}

.page-faq-account-funds__cta-banner {
    background: linear-gradient(90deg, #0A2463 0%, #1A3C7A 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #FFD700;
}

.page-faq-account-funds__cta-image {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    height: 150%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.page-faq-account-funds__cta-banner .page-faq-account-funds__container {
    position: relative;
    z-index: 1;
}

.page-faq-account-funds__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-faq-account-funds__cta-text {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-faq-account-funds__hero-title {
        font-size: 2.5em;
    }
    .page-faq-account-funds__section-title {
        font-size: 2em;
    }
    .page-faq-account-funds__sub-title {
        font-size: 1.5em;
    }
    .page-faq-account-funds__grid {
        grid-template-columns: 1fr;
    }
    .page-faq-account-funds__grid--reverse {
        grid-template-areas: unset;
    }
    .page-faq-account-funds__grid--reverse .page-faq-account-funds__grid-item:first-child,
    .page-faq-account-funds__grid--reverse .page-faq-account-funds__grid-item:last-child {
        grid-area: unset;
    }
    .page-faq-account-funds__cta-title {
        font-size: 2.2em;
    }
    .page-faq-account-funds__cta-image {
        right: -100px;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .page-faq-account-funds__hero {
        padding: 60px 0;
    }
    .page-faq-account-funds__hero-title {
        font-size: 2em;
    }
    .page-faq-account-funds__hero-subtitle {
        font-size: 1.1em;
    }
    .page-faq-account-funds__section {
        padding: 40px 0;
    }
    .page-faq-account-funds__section-title {
        font-size: 1.8em;
    }
    .page-faq-account-funds__sub-title {
        font-size: 1.3em;
    }
    .page-faq-account-funds__text,
    .page-faq-account-funds__list li,
    .page-faq-account-funds__ordered-list li {
        font-size: 1em;
    }
    .page-faq-account-funds__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-account-funds__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-faq-account-funds__cta-banner {
        padding: 60px 0;
    }
    .page-faq-account-funds__cta-title {
        font-size: 1.8em;
    }
    .page-faq-account-funds__cta-text {
        font-size: 1.1em;
    }
    .page-faq-account-funds__cta-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-faq-account-funds__hero-title {
        font-size: 1.7em;
    }
    .page-faq-account-funds__hero-subtitle {
        font-size: 0.95em;
    }
    .page-faq-account-funds__section-title {
        font-size: 1.5em;
    }
    .page-faq-account-funds__sub-title {
        font-size: 1.2em;
    }
    .page-faq-account-funds__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq-account-funds__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-account-funds__cta-title {
        font-size: 1.6em;
    }
    .page-faq-account-funds__cta-text {
        font-size: 1em;
    }
}