* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #0f0c29;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #7209B7, #480CA8);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #F72585;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(247, 37, 133, 0.7);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #F72585;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #F72585;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding: 120px 0 50px;
            background: linear-gradient(135deg, #0f0c29, #302b63);
            min-height: 100vh;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #F72585;
            text-align: center;
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 3px;
            bottom: -10px;
            left: 15%;
            background: linear-gradient(90deg, transparent, #F72585, transparent);
        }
        
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(72, 12, 168, 0.2);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .content-section {
            margin-bottom: 30px;
        }
        
        .content-section:last-child {
            margin-bottom: 0;
        }
        
        .content-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #9D4EDD;
        }
        
        .content-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: #F72585;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: #e0e0e0;
        }
        
        .content-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            color: #e0e0e0;
        }
        
        .content-section li {
            margin-bottom: 8px;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background: rgba(72, 12, 168, 0.3);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .cookie-type h4 {
            color: #F72585;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .cookie-type p {
            color: #e0e0e0;
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #0f0c29, #302b63);
            padding: 70px 0 30px;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: #F72585;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #F72585;
            padding-left: 5px;
        }
        
        .contact-info p {
            color: #e0e0e0;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #9D4EDD;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9D4EDD;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, #7209B7, #480CA8);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .content-wrapper {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .content-wrapper {
                padding: 20px;
            }
            
            .content-section h2 {
                font-size: 1.5rem;
            }
            
            .content-section h3 {
                font-size: 1.2rem;
            }
            
            .cookie-types {
                flex-direction: column;
            }
        }

