body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f5f5f5;
    background-color: #0f111e;
}

header {
    background-color: #1a1b2e;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

nav a {
    color: #ffe58f;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffc107;
}

.hero {
    background: linear-gradient(90deg, #1e213a, #121221);
    padding: 2rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    background: linear-gradient(90deg, #ffe58f, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 800;
}

.section-title {
    color: #ffe58f;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.3rem;
}

.policy-section {
    background-color: #1f2937;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-list {
    margin-top: 1rem;
    list-style-type: none;
    padding-left: 0;
}

.cookie-list li {
    background-color: #111827;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #3b82f6;
    border-radius: 0.5rem;
    transition: transform 0.2s ease;
}

.cookie-list li:hover {
    transform: translateX(5px);
}

.button {
    background: linear-gradient(to right, #f97316, #c026d3);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.faq-item {
    background-color: #111827;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    background-color: #0f111e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
    color: #818cf8;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #6366f1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1rem;
    }
}
