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

.privacy-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.privacy-content h1 {
    color: #1a202c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-content h2 {
    color: #02812c;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 0.5rem;
}

.privacy-content h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.privacy-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.privacy-content ul, .privacy-content ol {
    color: #4a5568;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.gdpr-highlight {
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
    border: 1px solid #4a9eff;
    border-left: 4px solid #02812c;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

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

.rights-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 3px solid #02812c;
}

.rights-card h4 {
    color: #02812c;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-basis-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legal-basis-table th,
.legal-basis-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.legal-basis-table th {
    background: #02812c;
    color: white;
    font-weight: 600;
}

.last-updated {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #02812c;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2d3748;
}

.contact-info {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.dpo-contact {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 1px solid #38a169;
    border-left: 4px solid #02812c;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #02812c;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.retention-table th,
.retention-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.retention-table th {
    background: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .privacy-container {
        padding: 0 1rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-basis-table,
    .retention-table {
        font-size: 0.9rem;
    }
}
