    #credo-slider-wrapper * {
        box-sizing: border-box !important; /* Ensure consistent box model */
        margin: 0 !important;
        padding: 0 !important;
        /* You might need to add font: inherit !important; color: inherit !important; if text styles are an issue */
    }

    #credo-slider-wrapper {
        position: relative;
        width: 100%;
        height: 350px !important; /* Force height to match original banner */
        overflow: hidden !important; /* Crucial for hiding off-screen images */
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin-bottom: 1.5rem; /* Match the gap from the tile-grid */
        z-index: 1; /* Ensure slider is above other elements if needed */
    }

    #credo-slider-images {
        display: flex !important; /* Force flex layout for horizontal arrangement */
        height: 100% !important; /* Ensure it takes full height of wrapper */
        transition: transform 0.8s ease-in-out;
        flex-wrap: nowrap !important; /* Prevent wrapping of slides */
    }

    .credo-slider-image {
        min-width: 100% !important; /* Force each slide to take full width */
        height: 100% !important; /* Force height */
        background-size: cover !important; /* Ensure image covers the full area */
        background-position: center !important; /* Center the image */
        background-repeat: no-repeat !important; /* Prevents image from repeating */
        display: flex; /* Keep flex for caption centering */
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        flex-shrink: 0 !important; /* Prevent shrinking */
        flex-grow: 0 !important; /* Prevent growing */
        flex-basis: 100% !important; /* Explicitly set basis to 100% */
    }

    .credo-slider-image .caption {
        position: absolute;
        background: rgba(45, 69, 103, 0.75);
        color: white;
        font-size: 2.5rem;
        font-weight: 700;
        padding: 1rem 2rem;
        border-radius: 8px;
    }

    .credo-slider-dots {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10; /* Ensure dots are above slider images */
    }

    .credo-slider-dots .dot {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .credo-slider-dots .dot.active {
        background-color: #0478d1;
        transform: scale(1.2);
    }
