* {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: "Signika", sans-serif;
        }
        body {
            background: #1a1a1a;
            color: #fff;
        }
        .gallery-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 10px;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 5px;
            cursor: pointer;
            background-color: #2c2c2c;
            transition: transform 0.3s ease;
        }
        .gallery-item img, .gallery-item video {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        .gallery-item:hover img, .gallery-item:hover video {
            transform: scale(1.1);
        }
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .lightbox-content {
            max-width: 95%;
            max-height: 95%;
            border-radius: 5px;
        }
        .close {
            position: absolute;
            top: 15px;
            right: 25px;
            color: #fff;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
        }
        .separator {
            border-top: 2px solid #f5a100;
            margin: 40px 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-title {
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #f5a100;
        }
        .back-button {
            display: inline-block;
            padding: 10px 20px;
            margin: 20px 0;
            background-color: #f5a100;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
            text-align: center;
        }
        .back-button:hover {
            background-color: #d48f00;
        }
        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .back-button {
                margin: 20px auto;
                display: block;
                width: fit-content;
            }
        }