:root {
            --primary: #2c6fbb;
            --primary-dark: #1a4c8c;
            --secondary: #4ecdc4;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: var(--primary);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .text-center {
            text-align: center;
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 0;
            border-radius: 4px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: var(--box-shadow);
            z-index: 1000;
            padding: 1rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 200px;
            height: auto;
        }

        
        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 1.5rem;
        }

        .nav-menu a {
            font-weight: 600;
            color: var(--dark);
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding-top: 8rem;
            padding-bottom: 5rem;
            background: linear-gradient(135deg, #f5f9ff 0%, #e2ecff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
            font-size: 2.8rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--gray);
        }

        .hero-img {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .hero-img::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0.1;
            z-index: 1;
        }

        .hero-img img {
            width: 100%;
            display: block;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-img {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .about-img img {
            width: 100%;
            display: block;
        }

        /* Gallery Section */
        .gallery {
            background-color: #f9fbfd;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
        }

        .gallery-img {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-description {
            margin-bottom: 1.5rem;
            color: var(--light-gray);
        }

        .footer-title {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .cookie-popup.active {
            transform: translateY(0);
        }

        .cookie-content {
            flex: 1;
            min-width: 300px;
        }

        .cookie-content p {
            margin-bottom: 0;
            color: var(--dark);
        }

        .cookie-actions {
            display: flex;
            gap: 0.5rem;
        }

        /* Cookie Policy Page */
        .policy-container {
            max-width: 900px;
            margin: 8rem auto 3rem;
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .policy-section {
            margin-bottom: 2.5rem;
        }

        .policy-section h2 {
            color: var(--primary);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--light-gray);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-content h1 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background: white;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-menu li {
                margin: 0;
                width: 100%;
            }

            .nav-menu a {
                display: block;
                padding: 1rem;
                text-align: center;
                border-bottom: 1px solid var(--light-gray);
            }

            .hero-container,
            .about-container {
                grid-template-columns: 1fr;
            }

            .hero-img {
                margin-top: 2rem;
                order: -1;
            }

            .hero-content {
                text-align: center;
            }

            .section {
                padding: 3rem 0;
            }

            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }

            .cookie-actions {
                margin-top: 1rem;
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }

            .policy-container {
                padding: 1.5rem;
            }
        }