.privacy-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.last-update {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.privacy-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.privacy-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.privacy-section p {
    color: #637381;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    color: #637381;
}

.privacy-section ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
}

.data-category, .usage-category {
    margin-bottom: 2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.right-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.right-card p {
    font-size: 0.9rem;
    margin: 0;
}

.cookies-info {
    text-align: center;
}

.cookie-settings-btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.privacy-contact {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    margin-top: 4rem;
}

.privacy-contact h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.privacy-contact p {
    color: #637381;
    margin-bottom: 1.5rem;
}

.contact-dpo-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-dpo-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .privacy-contact {
        padding: 2rem 1rem;
    }
}

