
    .iceil-section {
        max-width: 100%; /* Full width */
        margin: 80px auto;
        padding: 0px 40px;
        background: none; /* Removed background color */
        border-radius: 0; /* Removed border radius */
        text-align: center;
    }

    .iceil-section h1 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #000 !important; /* Title color changed to black */
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }

    .iceil-section h1::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #2676bd;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .iceil-section p {
        font-size: 1.2rem;
        color: #4a4a4a;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .iceil-section ul {
        list-style-type: none;
        padding: 0;
        margin: 0 auto;
        max-width: 800px;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid layout */
        gap: 20px;
        align-content: center;
    }

    .iceil-section ul li {
        font-size: 1rem;
        color: #4a4a4a;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Added box shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .iceil-section ul li .icon {
        font-size: 1.5rem;
        color: #2676bd;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: rgba(0, 123, 255, 0.1); */
        border-radius: 8px;
    }

    .iceil-section ul li:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
    }

    .iceil-section ul li span.highlight {
        color: #2676bd;
        font-weight: 600;
    }

    .header-sector h1{
        font-size: 2.8em;
        font-weight: 700;
        color: #000 !important; /* Title color changed to black */
        margin-bottom: 60px;
        position: relative;
        text-align: center;
    }

    .header-sector h1::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #2676bd;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .h2.aesthetic {
        color: black;
    }

    .aesthetic-content{
        margin: 8em;
    }

    .fill-image{
        width: 100%;
        height:100%;
        object-fit: cover;
    }
    
    .list-group > li > span{
        color: #2676bd;

    }

    .list-group-numbered > .list-group-item::before{
        color: #2676bd;
    }
    
    .reverse-row{
        flex-direction: row-reverse;
    }
    
    .h2.aesthetic{
        padding-left: 3rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .iceil-section {
            padding: 40px 20px;
        }

        .iceil-section h1 {
            font-size: 2.2rem;
        }

        .iceil-section p {
            font-size: 1rem;
        }

        .iceil-section ul {
            grid-template-columns: 1fr; /* Single column on smaller screens */
        }

        .iceil-section ul li {
            font-size: 0.9rem;
        }
    }
    @media (max-width: 475px){
        .header-sector h1{
            display: flex;
            flex-direction: column;
        }
        .aesthetic-content, .reverse-row{
            grid-column-gap: 50px;
        }

        .gap{
            grid-gap: 50px !important;
        }
        .aesthetic-content{
            margin-top: 5px;
        }
    }
    @media (max-width: 786px){
        .iceil-section {
            padding: 40px 20px;
            margin: 0px auto;
        }

        .iceil-section h1 {
            font-size: 2.2rem;
        }

        .iceil-section p {
            font-size: 1rem;
            margin-bottom: 0px;
        }

        .iceil-section ul {
           width: 70%;
           margin: 0px auto;
           grid-template-columns: 1fr;
        }

        .iceil-section ul li {
            font-size: 0.9rem;
        }

        .header-sector h1{
            font-size: 2.2em;
        }
        
        .aesthetic-content{
            padding: 0px;
        }

        .h2.aesthetic{
            padding-left: 0 !important;
        }
        
       

    }

    
    