    .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 20px;
    }
    
    .gallery a {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }
    
    .gallery a:hover {
        transform: scale(1.05);
    }
    
    .gallery img {
        height: 150px;
        width: 150px;
        object-fit: cover;
        display: block;
    }
    
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    
    .close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        font-weight: bold;
    }
    
    .close:hover {
        color: #ccc;
    }

    .lightbox1 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .lightbox img1 {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    
    .close1 {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        font-weight: bold;
    }
    
    .close1:hover {
        color: #ccc;
    }