.our_difference {
    background-color: #0A3956;
    position: relative;
    overflow: hidden;

    & .container {
        position: relative;
        z-index: 2;
    }
    
    /* Header Section */
    & .our_difference_header {
        margin-bottom: 40px;
        text-align: center;
        position: relative;
        
        & h2 {
            font-style: normal;
            font-size: 60px;
            line-height: 1.25;
            color: white;
            margin: 0;
            font-weight: 400;
        }
    }

    /* Content Section */
    & .our_difference_content {
        margin-bottom: 100px;
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        
        & p {
            font-size: 18px;
            line-height: 1.6;
            color: white;
            margin: 0 0 15px;
            
            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    /* Blocks Grid */
    & .our_difference_blocks {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px 25px;
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Individual Block */
    & .difference_block {
        background: white;
        border-radius: 15px;
        padding: 45px 25px 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        min-height: 170px;
        flex: 0 0 calc(20% - 20px);
        max-width: calc(20% - 20px);
        
        &:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
    }

    & .difference_icon {
        position: absolute;
        top: -23px;
        left: 50%;
        transform: translateX(-50%);
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #A3BA5A;
        border-radius: 50%;
        padding: 10px;
        z-index: 10;
        
        & img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
    }

    & .difference_block h3 {
        font-size: 18px;
        font-weight: 700;
        color: #0A3956;
        margin: 0 0 15px;
        line-height: 1.3;
    }

    & .difference_text {
        & p {
            font-size: 15px;
            line-height: 1.5;
            color: #505050;
            margin: 0;
        }
    }

    /* Background Pattern */
    & .bg_pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        
        & .bg_pattern_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    & .btn_wrapper {
        margin-top: 60px;
        text-align: center;
        justify-content: center;
    }

}

.our_difference .btn_wrapper {
    margin-top: 60px;
    text-align: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .our_difference {
        & .difference_block {
            flex: 0 0 calc(25% - 20px);
            max-width: calc(25% - 20px);
        }
    }
}

@media (max-width: 1200px) {
    .our_difference {
        & .difference_block {
            flex: 0 0 calc(33.333% - 20px);
            max-width: calc(33.333% - 20px);
        }
    }
}

@media (max-width: 992px) {
    .our_difference {
        & .our_difference_blocks {
            gap: 40px 20px;
        }

        & .difference_block {
            flex: 0 0 calc(50% - 10px);
            max-width: calc(50% - 10px);
        }

        & .slick-prev, & .slick-next {
           & svg circle {
           fill: #fff!important;
           }
           & svg path {
            fill: #0A3956!important;
           }
        }

        & .difference_block {
            min-height: 160px!important;
        }

        & .difference_icon {
            position: relative;
        }


    }
}

@media (max-width: 1024px) {
    .our_difference {
        & .difference_block h3 {
            font-size: 18px!important;
        }
    }
}

@media (max-width: 768px) {
    .our_difference {
        & .our_difference_header {
            margin-bottom: 30px;
            padding: 0 15px;
            
            & h2 {
                font-size: 40px;
            }
        }

        & .our_difference_content {
            margin-bottom: 70px;
            padding: 0 15px;
            
            & p {
                font-size: 16px;
            }
        }

        & .our_difference_blocks {
            gap: 35px;
        }

        & .difference_block {
            padding: 40px 20px 30px;
            min-height: auto;
            flex: 0 0 100%;
            max-width: 100%;
        }

        & .difference_icon {
            top: -20px;
            width: 40px;
            height: 40px;
            padding: 8px;
        }

        & .difference_block h3 {
            font-size: 16px;
        }

        & .difference_text {
            & p {
                font-size: 14px;
            }
        }
    }
}

@media (max-width: 480px) {
    .our_difference {
        & .our_difference_header {
            & h2 {
                font-size: 32px;
            }
        }

        & .difference_block {
            padding: 35px 15px 25px;
        }
        
        & .difference_icon {
            top: -18px;
            width: 36px;
            height: 36px;
            padding: 8px;
        }
    } 
}

