    .customer-banner-heading {
        text-align: center;
        width: 100%;
        max-width: 800px;
        margin: 0 auto 50px;
    }

    .sk-stories-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sk-stories-cards .sk-story-card {
        border-radius: 20px;
        background: #F5F7FF;
        text-align: left;
        transition: transform 0.2s ease;
        display: block;
        width: 32%;
    }

    .sk-stories-cards .sk-story-card:hover {
        transform: translateY(-5px);
    }

    .sk-stories-cards .sk-story-card a {
        text-decoration: none;
        display: block;
        padding: 40px 46px;
    }

    .sk-stories-cards .sk-story-card .sk-story-card-img {
        width: 100%;
        height: 174px;
        overflow: hidden;
    }

    .sk-stories-cards .sk-story-card .sk-story-card-img img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-position: center;
        object-fit: cover;
        border: 1px solid #dddada;
    }

   .sk-story-card span {
       color: #0d4dce;
       font-size: 16px;
       font-style: normal;
       font-weight: 400;
       line-height: 24px;
       transition: 0.3s ease-in-out;
    }
    .sk-story-card span:hover{
         color: #428bca;
    }

    .sk-story-card h4 {
        color: #333;
        margin: 15px 0 31px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 66px;
    }

    @media screen and (max-width: 1200px) {
        .sk-stories-cards .sk-story-card a {
            padding: 30px;
        }

        .sk-stories-cards {
            gap: 18px;
        }
    }

    @media screen and (max-width: 992px) {
        .sk-stories-cards .sk-story-card a {
            padding: 30px;
        }

        .sk-stories-cards .sk-story-card {
            width: 45%;
        }
    }

    @media screen and (max-width: 767px) {
        .sk-stories-cards .sk-story-card {
            width: 100%;
        }

        .sk-story-card h4 {
            margin: 10px 0 25px;
        }

        .sk-stories-cards .sk-story-card a {
            padding: 20px;
        }
    }