:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-dark: #0a0a0a; /* From body background info */
    --background-light: #ffffff;
    --button-register: #C30808;
    --button-login: #C30808;
    --button-text-yellow: #FFFF00;
}

/* Body background is dark from shared.css, so main content text should be light by default. */
.page-blog-safe-reliable-fund-security {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--background-dark);
}

.page-blog-safe-reliable-fund-security__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-dark);
    overflow: hidden;
}

.page-blog-safe-reliable-fund-security__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.page-blog-safe-reliable-fund-security__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-safe-reliable-fund-security__hero-content {
    max-width: 900px;
    z-index: 1;
    color: var(--text-light);
}

.page-blog-safe-reliable-fund-security__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-safe-reliable-fund-security__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-blog-safe-reliable-fund-security__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-safe-reliable-fund-security__btn-primary,
.page-blog-safe-reliable-fund-security__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-safe-reliable-fund-security__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-safe-reliable-fund-security__btn-primary:hover {
    background-color: #005a2e;
    transform: translateY(-2px);
}

.page-blog-safe-reliable-fund-security__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-safe-reliable-fund-security__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-blog-safe-reliable-fund-security__section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-safe-reliable-fund-security__content-area {
    background-color: var(--background-light);
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.page-blog-safe-reliable-fund-security__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.page-blog-safe-reliable-fund-security__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-safe-reliable-fund-security p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-blog-safe-reliable-fund-security a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-blog-safe-reliable-fund-security a:hover {
    color: #005a2e;
}

.page-blog-safe-reliable-fund-security__list,
.page-blog-safe-reliable-fund-security__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-blog-safe-reliable-fund-security__ordered-list {
    list-style-type: decimal;
}

.page-blog-safe-reliable-fund-security__list li,
.page-blog-safe-reliable-fund-security__ordered-list li {
    margin-bottom: 10px;
}

.page-blog-safe-reliable-fund-security__image-block {
    margin: 30px 0;
    text-align: center;
}

.page-blog-safe-reliable-fund-security__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-blog-safe-reliable-fund-security__faq-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-blog-safe-reliable-fund-security__faq-section .page-blog-safe-reliable-fund-security__section-title {
    color: var(--text-light);
}

.page-blog-safe-reliable-fund-security__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-blog-safe-reliable-fund-security__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-blog-safe-reliable-fund-security__faq-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-safe-reliable-fund-security__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
    position: relative;
    list-style: none; /* For details/summary */
}

.page-blog-safe-reliable-fund-security__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-safe-reliable-fund-security__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-safe-reliable-fund-security__faq-item[open] .page-blog-safe-reliable-fund-security__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-safe-reliable-fund-security__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.page-blog-safe-reliable-fund-security__faq-answer p {
    margin-bottom: 0;
}

/* CTA Banner */
.page-blog-safe-reliable-fund-security__cta-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog-safe-reliable-fund-security__cta-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-blog-safe-reliable-fund-security__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-safe-reliable-fund-security__btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-safe-reliable-fund-security__main-title {
        font-size: 2.8em;
    }
    .page-blog-safe-reliable-fund-security__section-title {
        font-size: 2em;
    }
    .page-blog-safe-reliable-fund-security__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-blog-safe-reliable-fund-security {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-safe-reliable-fund-security__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-blog-safe-reliable-fund-security__hero-content {
        padding: 0 15px;
    }
    .page-blog-safe-reliable-fund-security__main-title {
        font-size: 2em;
        line-height: 1.3;
    }
    .page-blog-safe-reliable-fund-security__intro-text {
        font-size: 1em;
    }
    .page-blog-safe-reliable-fund-security__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .page-blog-safe-reliable-fund-security__btn-primary,
    .page-blog-safe-reliable-fund-security__btn-secondary {
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-safe-reliable-fund-security__section,
    .page-blog-safe-reliable-fund-security__content-area,
    .page-blog-safe-reliable-fund-security__cta-banner {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-safe-reliable-fund-security__section-title {
        font-size: 1.8em;
    }
    .page-blog-safe-reliable-fund-security__sub-title {
        font-size: 1.3em;
    }
    .page-blog-safe-reliable-fund-security__content-image,
    .page-blog-safe-reliable-fund-security__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-safe-reliable-fund-security__image-block {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    .page-blog-safe-reliable-fund-security__faq-section {
        padding: 40px 15px;
    }
    .page-blog-safe-reliable-fund-security__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-blog-safe-reliable-fund-security__faq-answer {
        padding: 0 20px 15px;
    }
    .page-blog-safe-reliable-fund-security__cta-title {
        font-size: 1.8em;
    }
    .page-blog-safe-reliable-fund-security__cta-description {
        font-size: 1em;
    }
    .page-blog-safe-reliable-fund-security__btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-blog-safe-reliable-fund-security__main-title {
        font-size: 1.8em;
    }
    .page-blog-safe-reliable-fund-security__section-title {
        font-size: 1.6em;
    }
    .page-blog-safe-reliable-fund-security__cta-title {
        font-size: 1.6em;
    }
    .page-blog-safe-reliable-fund-security__faq-question {
        padding: 12px 15px;
    }
    .page-blog-safe-reliable-fund-security__faq-answer {
        padding: 0 15px 12px;
    }
}