 .gallery-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            min-height: 60vh;
        }
        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .gallery-header h1 {
            color: #1a3a5a;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 4rem;
        }
        .gallery-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
            background: #f9f9f9;
        }
        .gallery-card:hover {
            transform: translateY(-5px);
        }
        .gallery-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        .gallery-info {
            padding: 15px;
            background: #fff;
            text-align: center;
            border-top: 1px solid #eee;
        }
        .gallery-info h3 {
            margin: 0;
            font-size: 1.1rem;
            color: #333;
        }
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .gallery-header h1 {
                font-size: 2rem;
            }
        }