/* Policy Pages Styling */
.policy-content-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #007bff;
}

.policy-header h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin: 0;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h3 {
    color: #007bff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.policy-section h4 {
    color: #333;
    font-size: 20px;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.policy-section p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    color: #555;
    margin-bottom: 8px;
    list-style-type: disc;
}

.policy-section ol {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section ol li {
    color: #555;
    margin-bottom: 8px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.policy-table th,
.policy-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.policy-table th {
    background: #007bff;
    color: white;
    font-weight: 600;
}

.policy-table tr:nth-child(even) {
    background: #f8f9fa;
}

.policy-table tr:hover {
    background: #e3f2fd;
}

.policy-footer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.policy-footer p {
    color: #856404;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .policy-header h2 {
        font-size: 28px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .policy-section h4 {
        font-size: 18px;
    }
    
    .policy-table {
        font-size: 14px;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 15px;
    }
    
    .policy-header h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section h4 {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .policy-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .policy-section {
        page-break-inside: avoid;
    }
    
    .policy-header {
        border-bottom: 2px solid #333;
    }
}