 /* RESET AND BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3a86ff;
            --primary-dark: #2667cc;
            --secondary: #ffbe0b;
            --accent: #ff006e;
            --dark: #212529;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            position: relative;
            overflow-x: hidden;
            min-height: 100vh;
            /* padding-bottom: 100px; */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .btn-secondary:hover {
            background-color: #e0a800;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 60px;
            color: var(--gray);
        }

        /* HEADER STYLES */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo img {
            width: 200px;
            height: auto;
        }

       

        nav ul {
            display: flex;
            gap: 30px;
        }

        nav a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
        }

        nav a:hover:after,
        nav a.active:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            padding: 120px 0 60px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="white" opacity="0.05"/></svg>');
        }

        .hero-content {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--primary);
            position: relative;
        }

        .hero-title span:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--secondary);
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            padding: 20px;
        }

        .image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .image-container img {
            display: block;
            width: 100%;
            transition: var(--transition);
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .shape {
            position: absolute;
            z-index: -1;
        }

        .shape-1 {
            top: -30px;
            left: -30px;
            width: 120px;
            height: 120px;
            border-radius: 30px;
            background: var(--secondary);
            transform: rotate(45deg);
        }

        .shape-2 {
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.8;
        }

        /* ABOUT SECTION */
        .about {
            background-color: var(--white);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-description {
            margin-bottom: 30px;
            color: var(--gray);
        }

        .about-features {
            margin-bottom: 30px;
        }

        .feature {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature i {
            color: var(--primary);
            background: rgba(58, 134, 255, 0.1);
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-text h3 {
            margin-bottom: 5px;
        }

        /* GALLERY SECTION */
        .gallery {
            background-color: var(--light);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 250px;
            transition: var(--transition);
            background-color: var(--white);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .gallery-icon {
            height: 65%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .gallery-icon i {
            font-size: 4rem;
            color: var(--white);
            opacity: 0.8;
        }

        .gallery-text {
            padding: 20px;
            text-align: center;
        }

        .gallery-text h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .gallery-text p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* FOOTER */
        footer {
            background-color: var(--dark);
            color: var(--light-gray);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.25rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-description {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* COOKIE POPUP */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 700px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .cookie-popup.active {
            opacity: 1;
            visibility: visible;
            bottom: 30px;
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
        }

        .cookie-text h3 {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .cookie-text p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        #accept-cookies {
            background-color: var(--primary);
            color: var(--white);
        }

        #decline-cookies {
            background-color: var(--light-gray);
            color: var(--dark);
        }

        /* RESPONSIVE STYLES */
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px 0;
                gap: 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: var(--transition);
            }
            
            nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li {
                padding: 15px 30px;
                width: 100%;
            }
            
            nav ul li:hover {
                background: var(--light);
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-btns {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .about-content, .hero-content {
                flex-direction: column;
            }
        }