* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #374151;
            background: #F9FAFB;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7A5AF8;
            text-decoration: none;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: #7A5AF8;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #374151;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .page-hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, #7A5AF8 0%, #FF6AD5 100%);
            color: white;
            margin-bottom: 4rem;
        }

        .page-hero h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #f0f9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .cookie-content {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
        }

        .cookie-manager {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.05), rgba(255, 106, 213, 0.05));
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(122, 90, 248, 0.1);
        }

        .cookie-manager h3 {
            color: #374151;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .cookie-controls {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .cookie-category {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #E5E7EB;
        }

        .cookie-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .cookie-toggle {
            position: relative;
            width: 60px;
            height: 30px;
            background: #E5E7EB;
            border-radius: 15px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookie-toggle.active {
            background: #7A5AF8;
        }

        .cookie-toggle::before {
            content: '';
            position: absolute;
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            transition: transform 0.3s ease;
        }

        .cookie-toggle.active::before {
            transform: translateX(30px);
        }

        .cookie-category h4 {
            color: #374151;
            font-size: 1rem;
            margin: 0;
        }

        .cookie-category p {
            color: #6B7280;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cookie-section {
            margin: 3rem 0;
            padding: 2rem 0;
            border-bottom: 1px solid #E5E7EB;
        }

        .cookie-section:last-child {
            border-bottom: none;
        }

        .cookie-section h2 {
            color: #374151;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cookie-section h3 {
            color: #374151;
            font-size: 1.3rem;
            margin: 2rem 0 1rem;
        }

        .cookie-section p {
            color: #6B7280;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .cookie-section ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .cookie-section li {
            color: #6B7280;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .cookie-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .cookie-type-card {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.05), rgba(255, 106, 213, 0.05));
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(122, 90, 248, 0.1);
        }

        .cookie-type-card h4 {
            color: #7A5AF8;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .cookie-type-card p {
            color: #6B7280;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .cookie-type-card .duration {
            color: #374151;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .save-preferences {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin: 3rem 0;
        }

        .save-preferences h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .save-preferences p {
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .preferences-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pref-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .pref-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .pref-button.primary {
            background: rgba(255, 255, 255, 0.9);
            color: #7A5AF8;
        }

        .pref-button.primary:hover {
            background: white;
        }

        footer {
            background: #1F2937;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FF6AD5;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9CA3AF;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 1.5rem;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
            z-index: 2000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .cookie-banner-text {
            color: #374151;
            flex: 1;
        }

        .cookie-banner-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cookie-btn.accept {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
        }

        .cookie-btn.customize {
            background: transparent;
            color: #7A5AF8;
            border: 2px solid #7A5AF8;
        }

        @media (max-width: 768px) {
            .nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .burger {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .cookie-content {
                padding: 2rem;
            }

            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }

            .preferences-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

