/* Policy Pages Styling */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

.policy-section h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.policy-section p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    margin: 15px 0 15px 30px;
    line-height: 1.6;
}

.policy-section li {
    margin-bottom: 10px;
    color: #555;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.policy-table th, .policy-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.policy-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    border-left: 4px solid #3498db;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
}