 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #3a86ff;
            --primary-dark: #2667cc;
            --secondary: #8338ec;
            --accent: #ff006e;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
            position: relative;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--dark), #1e3a8a);
            color: white;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo img {
            max-width: 200px;
            height: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Page container */
        .page-container {
            max-width: 1200px;
            margin: 100px auto 0;
            padding: 2rem;
            min-height: calc(100vh - 240px);
        }

        /* Home Page Styles */
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(58, 134, 255, 0.8)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
            border-radius: var(--border-radius);
            padding: 3rem 2rem;
            color: white;
            text-align: center;
            margin-bottom: 3rem;
            box-shadow: var(--box-shadow);
            animation: gradientAnimation 15s ease infinite;
            background-size: 400% 400%;
        }

        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            margin: 0.5rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 0, 110, 0.3);
        }

        .btn:hover {
            background: #ff4d94;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 0, 110, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .section {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: var(--box-shadow);
        }

        .section h2 {
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .about-section .content {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .about-section .text {
            flex: 1;
        }

        .about-section .image-container {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
   
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .stat-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .stat-card .number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 200px;
            position: relative;
            box-shadow: var(--box-shadow);
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }

        .gallery-item:nth-child(2n) {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa62e 100%);
        }

        .gallery-item:nth-child(3n) {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-item .title {
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .gallery-item:hover .title {
            transform: translateY(0);
        }

        .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

        /* Footer Styles */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 5% 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-about h3, 
        .footer-links h3, 
        .footer-legal h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-about h3::after,
        .footer-links h3::after,
        .footer-legal h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links ul, 
        .footer-legal ul {
            list-style: none;
        }

        .footer-links li, 
        .footer-legal li {
            margin-bottom: 0.7rem;
        }

        .footer-links a, 
        .footer-legal a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover, 
        .footer-legal a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            left: 20px;
            background: var(--dark);
            color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            z-index: 999;
            display: flex;
            flex-direction: column;
            transform: translateY(150%);
            transition: transform 0.5s ease-out;
        }

        .cookie-popup.active {
            transform: translateY(0);
        }

        .cookie-popup p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .accept-btn {
            background: var(--primary);
            color: white;
        }

        .reject-btn {
            background: transparent;
            color: #aaa;
            border: 1px solid #aaa;
        }

        .cookie-btn:hover {
            opacity: 0.9;
            transform: scale(1.03);
        }

        /* Legal Pages */
        .legal-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-content h2 {
            font-size: 1.8rem;
            margin: 1.5rem 0;
        }

        .legal-content h3 {
            font-size: 1.3rem;
            margin: 1.3rem 0 0.8rem;
            color: var(--dark);
        }

        .legal-content p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .legal-content ul {
            margin: 1rem 0 1rem 2rem;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        /* Contact Form */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-card i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .contact-form .form-group {
            margin-bottom: 1.2rem;
        }

        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Responsive Styles */
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-section .content {
                flex-direction: column;
            }

            .about-section .image-container {
                order: -1;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                background: var(--dark);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 100% 0%);
                transition: all 0.7s ease;
            }

            nav ul.active {
                clip-path: circle(1000px at 100% 0%);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section h2 {
                font-size: 1.8rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .gallery {
                grid-template-columns: 1fr;
            }

            .cookie-popup {
                flex-direction: column;
            }

            .cookie-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .page-container {
                padding: 1rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .section {
                padding: 1.5rem;
            }

            .btn {
                padding: 0.7rem 1.5rem;
            }

            .copyright {
                font-size: 0.8rem;
            }
        }