       /* Original styles EXACTLY as provided */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
        }
        
        nav {
            background-color: #2c3e50;
            padding: 2px 0;
        }
        
        .menu {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .menu li {
            margin: 0 20px;
        }
        
        .menu a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .menu a:hover {
            color: #3498db;
        }
        
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .about-section {
            padding: 20px;
        }
        
        .about-section h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .about-section p {
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .footer-link {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        
        /* Gallery */
        .gallery-section {
            padding: 20px;
        }
        
        .gallery-grid {
            column-count: 4;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 10px;
        }
		
		@media (max-width: 576px) {
        .gallery-grid {
		        column-count: 1;
                grid-template-columns: 1fr;
            }

        }
		@media (max-width: 776px) {
        .gallery-grid {
		        column-count: 2;
                grid-template-columns: 1fr;
            }

        }
        
        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 5px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            object-fit: cover;
            cursor: pointer;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
        }
        
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80%;
            margin-top: 5%;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        
        /* Related gallery */
        .related-gallery {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 1px solid #eee;
        }
        
        .related-title {
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
        
        .related-item img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 4px;
        }

        /* Added footer styles matching original color scheme */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            margin-top: 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .footer-column h3 {
            color: #3498db;
            margin-bottom: 15px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #3498db;
        }
    .gallery-description {
        padding: 8px 10px;
        background-color: #2c3e50;
        color: white;
        font-size: 13px;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .gallery-item {
        position: relative;
		margin-bottom: 9px;
    }
        .copyright {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 14px;
        }