.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #E0E0E0;
    min-height: 100vh;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.privacy-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4B5A6F;
    margin-bottom: 20px;
    border-bottom: 2px solid #4B5A6F;
    padding-bottom: 10px;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

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

.privacy-section li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.privacy-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4B5A6F;
    font-weight: bold;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 20px 15px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
} 