/* Privacy Policy Page Specific Styles */

.privacy-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-header h1 {
    color: #9c27b0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-dates {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: #9c27b0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    position: relative;
    padding-left: 0.5rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
} 