.cnc-feature-cards-section { padding: 100px 0; background-color: #ECF5FF; }
    .cnc-feature-cards-section :is(h1,h2,h3,h4,h5,h6,p) { margin: 0; padding: 0; }
    .cnc-feature-cards-section .container { max-width: 1430px; margin: 0 auto; padding: 0 15px; color: #323232; }

    .cnc-feature-cards-section .top-content { margin-bottom: 50px; }
    .cnc-feature-cards-section .top-content :is(h1,h2,h3,h4,h5,h6) { font-size: 48px; font-weight: 700; color: #2358cc; margin-bottom: 20px; }
    .cnc-feature-cards-section .top-content .top-desc-wrapper {
        font-size: 20px;
        color: #323232;
        max-width: 1000px;
    }

    .cnc-feature-cards-section .deliverables-content :is(h1,h2,h3,h4,h5,h6) { font-size: 32px; font-weight: 700; color: #2358cc; margin-bottom: 25px; }
    
    .cnc-feature-cards-section .deliverables-grid { 
        display: grid; 
        grid-template-columns: repeat(4, 1fr);
        gap: 20px; 
    }
    .cnc-feature-cards-section .deliverable-item { 
        background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%); 
        border-left: 3px solid #2358cc; 
        padding: 25px 20px; 
        display: flex;
        align-items: center;
    }
    .cnc-feature-cards-section .deliverable-item p { 
        font-size: 20px; 
        font-weight: 400; 
        color: #323232; 
    }

    @media (max-width: 1024px) {
        .cnc-feature-cards-section { padding: 50px 0; }
        .cnc-feature-cards-section .top-content :is(h1,h2,h3,h4,h5,h6) { font-size: 40px; }
        .cnc-feature-cards-section .top-content .top-desc-wrapper { font-size: 18px; }
        .cnc-feature-cards-section .deliverables-content :is(h1,h2,h3,h4,h5,h6) { font-size: 28px; }
        .cnc-feature-cards-section .deliverable-item p { font-size: 18px; }
    }

    @media (max-width: 991px) {
        .cnc-feature-cards-section .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 767px) {
        .cnc-feature-cards-section { padding: 30px 0; }
        .cnc-feature-cards-section .top-content :is(h1,h2,h3,h4,h5,h6) { font-size: 30px; }
        .cnc-feature-cards-section .top-content .top-desc-wrapper { font-size: 16px; }
        .cnc-feature-cards-section .deliverables-content :is(h1,h2,h3,h4,h5,h6) { font-size: 24px; }
        .cnc-feature-cards-section .deliverable-item p { font-size: 16px; }
        .cnc-feature-cards-section .deliverables-grid { grid-template-columns: 1fr; }
    }
