.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .gallery-container h1 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 2rem;
        }

        .tz-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .tz-gallery .row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .tz-gallery .col-sm-6 {
            flex: 1 1 calc(50% - 20px);
        }

        .tz-gallery .col-md-3 {
            flex: 1 1 calc(25% - 20px);
        }

        .tz-gallery a {
            display: block;
            /* border-radius: 10px; */
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tz-gallery a:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        }

        .tz-gallery img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 768px) {
            .tz-gallery .col-md-3 {
                flex: 1 1 calc(50% - 20px);
            }
        }

        @media (max-width: 576px) {
            .tz-gallery .col-md-3, .tz-gallery .col-sm-6 {
                flex: 1 1 100%;
            }

            .tz-gallery {
                gap: 10px;
            }
        }