 body{
            background:#f5f7fb;
        }

        .gallery-section{
            padding:60px 0;
        }

        .gallery-title{
            text-align:center;
            margin-bottom:40px;
            font-weight:400;
        }

        /* Masonry Layout */
        .gallery{
            column-count:3;
            column-gap:20px;
        }

        @media(max-width:992px){
            .gallery{
                column-count:2;
            }
        }

        @media(max-width:576px){
            .gallery{
                column-count:1;
            }
        }

        .gallery-item{
            margin-bottom:20px;
            break-inside:avoid;
        }

        .gallery-item a{
            display:block;
            overflow:hidden;
            border-radius:12px;
            background:#fff;
            box-shadow:0 4px 15px rgba(0,0,0,0.08);
        }

        .gallery-item img{
            width:100%;
            height:auto;
            display:block;
            transition:0.4s ease;
        }

        .gallery-item img:hover{
            transform:scale(1.04);
        }

    