    :root {
            --primary: #1a73e8;
            --secondary: #ff9800;
            --accent: #00bcd4;
            --dark: #0d2538;
            --light: #f5f9ff;
            --text: #333;
            --gray: #5f7d9c;
            --card-bg: rgba(255, 255, 255, 0.85);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
            position: relative;
            min-height: 100vh;
        }
        
        .page-content {
            display: block;
        }
        
        .active-page {
            display: block;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            color: var(--accent);
            font-size: 30px;
        }
        
        .logo span {
            color: var(--primary);
        }
        
/* ======== MENU ======== */

/* Desktop Menu */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-menu {
    display: flex;
    align-items: center;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-menu ul li {
    margin-left: 20px;
}

.desktop-menu ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.desktop-menu ul li a:hover {
    background-color: rgba(26, 115, 232, 0.1);
    color: var(--primary);
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    background: none;
    border: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 10px 0;
}

.mobile-menu ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
    background-color: rgba(26, 115, 232, 0.1);
    color: var(--primary);
}

/* Show Mobile Menu When Active */
.mobile-menu.show {
    display: flex;
}

/* ======== MEDIA QUERIES ======== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-200%);
        transition: transform 0.3s ease;
        z-index: 99;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        width: 100%;
        padding: 10px 15px;
    }
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
}

        
        /* Hero Section */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(13, 37, 56, 0.7), rgba(13, 37, 56, 0.7)), url('images/hero-banner.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            width: 80%;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e88c00;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
.btn-outline {
    display: inline-block;
    background-color: white;
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #f0f7ff;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Other Pages */
        .page-container {
            max-width: 900px;
            margin: 50px auto;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .page-title {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--dark);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .page-content h3 {
            margin: 25px 0 15px;
            color: var(--dark);
            font-size: 24px;
        }
        
        .page-content p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        /* Contact Form */
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
        }
        
        .contact-form textarea {
            height: 150px;
        }
        
        /* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 30px 0;
    /* position: absolute; ❌ */
    bottom: 0; 
    width: 100%;
}

        
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column p {
    margin-bottom: 10px;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.footer-column i {
    margin-right: 8px;
    color: var(--accent);
}

        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 14px;
        }
        
        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 1000;
            font-size: 14px;
        }
        
        .cookie-popup p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
        }
        
        .cookie-accept {
            background-color: var(--primary);
            color: white;
            border: none;
        }
        
        .cookie-settings {
            background-color: transparent;
            border: 1px solid var(--gray);
            color: var(--text);
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column-reverse;
            }
        }
        
        @media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-200%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }
}
        
        @media (max-width: 480px) {
            .hero {
                height: 85vh;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-outline {
                margin-left: 0;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
        }



