 /* All CSS is scoped to #cfz-homepage-root to prevent conflicts with Header/Footer */
        #cfz-homepage-root {
            --cfz-blue-primary: #2563eb;
            --cfz-text-dark: #1e293b;
            --cfz-text-muted: #64748b;
            --cfz-bg-light: #f8fafc;
            
            background-color: var(--cfz-bg-light);
            color: var(--cfz-text-dark);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
    scroll-behavior: smooth;
        }
        /* Hero Grid Layout */
        #cfz-homepage-root .cfz-hero-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            padding: 80px 10%;
            align-items: center;
            background: #ffffff;
        }

        #cfz-homepage-root .cfz-hero-heading {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            margin: 0 0 20px 0;
            line-height: 1.2;
            color: var(--cfz-text-dark);
        }

        #cfz-homepage-root .cfz-hero-description {
            font-size: 1.1rem;
            color: var(--cfz-text-muted);
            margin-bottom: 35px;
            max-width: 550px;
        }

        #cfz-homepage-root .cfz-primary-btn {
            display: inline-block;
            background-color: var(--cfz-blue-primary);
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.2s;
        }

        #cfz-homepage-root .cfz-primary-btn:hover {
            opacity: 0.9;
        }

        /* Add this to your existing CSS block */

#cfz-homepage-root .cfz-media-placeholder {
    background: #f1f5f9;

    display: flex;
    align-items: center;
    justify-content: center;

}

#cfz-homepage-root .cfz-media-placeholder img {
    max-width: 100%; /* Prevents the image from being wider than the box */
    max-height: 100%; /* Prevents the image from being taller than the box */
    height: auto;
    width: auto;
   object-fit: contain;  /* Changed to 'contain' to display complete image */
}

        /* Links Grid Layout */
        #cfz-homepage-root .cfz-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding: 60px 10%;
        }

        #cfz-homepage-root .cfz-column-title {
            color: var(--cfz-blue-primary);
            font-size: 1.2rem;
            margin: 0 0 20px 0;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 10px;
        }

        #cfz-homepage-root .cfz-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #cfz-homepage-root .cfz-nav-item {
            display: block;
            padding: 8px 0;
            color: var(--cfz-text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        #cfz-homepage-root .cfz-nav-item:hover {
            color: var(--cfz-text-dark);
            text-decoration: underline;
        }

        /* Bottom Text Section */
        #cfz-homepage-root .cfz-bottom-content {
            padding: 80px 10%;
            background-color: #ffffff;
            text-align: center;
        }

        #cfz-homepage-root .cfz-content-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        #cfz-homepage-root .cfz-section-title {
            font-size: 2rem;
            margin: 0 0 25px 0;
        }

        #cfz-homepage-root .cfz-body-text {
            font-size: 1.05rem;
            color: var(--cfz-text-muted);
            margin: 0;
            text-align: justify;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            #cfz-homepage-root .cfz-hero-container {
                text-align: center;
                padding: 40px 5%;
            }
            #cfz-homepage-root .cfz-hero-description {
                margin-left: auto;
                margin-right: auto;
            }
            #cfz-homepage-root .cfz-links-container {
                padding: 40px 5%;
            }
        }