        html, body {
            height: 100%;
            overflow-x: hidden;
            overflow-y:var(--primary-color);
        }

        :root {
            --primary-color: #263d33;
            --secondary-color: #f8f9fa;
            --text-color: #f8f9fa;
            --light-text: #fff;
            --dark-bg: #1b1b1b;
            --card-bg: #2b2b2b;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            display: flex;
            flex-direction: column;
        }
        
        .main-content {
            flex: 1;
        }
        
        .navbar-brand img {
            height: 50px;
            transition: height 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand img {
                height: 35px;
            }
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease-in-out;
            cursor: pointer;
            aspect-ratio: 1/1;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        @media (max-width: 767px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-item.highlight {
                grid-column: span 1;
                grid-row: span 1;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item {
                aspect-ratio: 1/1;
            }
        }
        
        .highlight {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .modal-img {
            max-height: 80vh;
            object-fit: contain;
            width: auto;
            max-width: 100%;
        }
        
        .modal-content {
            background: transparent;
            border: none;
        }
        
        .modal-dialog {
            max-width: 90%;
            margin: 2rem auto;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 1000;
            color: white;
            font-size: 2rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            opacity: 0.8;
            transition: opacity 0.2s;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
        }
        
        .modal-close:hover {
            opacity: 1;
        }
        
        .modal-body {
            padding: 0 !important;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.8);
        }
        
        footer {
            background-color: #1f1f1f;
            color: white;
            padding: 60px 0 30px;
            flex-shrink: 0;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
.social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 0.5rem;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon.facebook {
            background-color: #3b5998;
            color: white;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }
        
        .social-icon.tiktok {
            background-color: #000;
            color: white;
        }
        