.gallery-section {
            padding: 80px 0;
        }
        
        .gallery-title {
            position: relative;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .gallery-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .gallery-item {
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            padding: 15px;
            background: white;
        }
        
        .gallery-caption h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .filter-buttons {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .filter-btn {
            border: none;
            background: none;
            padding: 8px 20px;
            margin: 0 5px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary-color);
            color: white;
        }