:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #0ea5e9;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #0f172a;
    --text-light: #475569;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    
    
}

/* Hero Section */
.cookie-hero {
    background: var(--gradient-primary);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.cookie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cookie-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(14, 165, 233, 0.9) 100%);
}

.cookie-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cookie-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.cookie-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Content Section */
.cookie-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.cookie-container {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-section {
    margin-bottom: 60px;
}

.cookie-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-section-title i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.cookie-section-content {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.cookie-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cookie-text:last-child {
    margin-bottom: 0;
}

.cookie-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cookie-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-list li:last-child {
    border-bottom: none;
}

.cookie-list-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-list-content {
    flex: 1;
}

.cookie-list-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cookie-list-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-warning-icon {
    color: var(--warning-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-warning-content h4 {
    color: var(--warning-color);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.cookie-warning-content p {
    color: #92400e;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-info-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-info-content h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.cookie-info-content p {
    color: var(--primary-dark);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table th,
.cookie-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-table tr:hover {
    background: var(--bg-light);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-footer {
    background: var(--bg-light);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cookie-footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cookie-footer-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cookie-footer-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-hero {
        padding: 100px 0 60px;
    }
    
    .cookie-title {
        font-size: 2.5rem;
    }
    
    .cookie-section-content {
        padding: 25px;
    }
    
    .cookie-section-title {
        font-size: 1.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cookie-hero {
        padding: 80px 0 50px;
    }
    
    .cookie-title {
        font-size: 2rem;
    }
    
    .cookie-section-content {
        padding: 20px;
    }
    
    .cookie-section-title {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-hero-content,
.cookie-section {
    animation: fadeInUp 0.8s ease-out;
}

.cookie-section:nth-child(1) { animation-delay: 0.1s; }
.cookie-section:nth-child(2) { animation-delay: 0.2s; }
.cookie-section:nth-child(3) { animation-delay: 0.3s; }
.cookie-section:nth-child(4) { animation-delay: 0.4s; }
.cookie-section:nth-child(5) { animation-delay: 0.5s; }