.privacy-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.privacy-header h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.privacy-header p {
    color: #666;
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.privacy-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.privacy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-section ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-section ul li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .privacy-container {
        margin: 1rem auto;
    }
    
    .privacy-header {
        padding: 1.5rem 0;
    }
    
    .privacy-section {
        padding: 1rem;
    }
}