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

.privacy-hero .logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.privacy-content {
    max-width: 800px;
    margin: -2rem auto 0;
    padding: 2rem 1rem;
}

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

.privacy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.privacy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section ul ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
}

.privacy-section ul ul li {
    margin-bottom: 0.25rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.privacy-section a:hover {
    opacity: 0.8;
}

.contact-email {
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .privacy-content {
        margin-top: -1rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
} 