/* Policy Pages Styles */
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2238;
    margin-bottom: 0.5rem;
}

.policy-meta {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.policy-date {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.policy-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2238;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-section p {
    margin-bottom: 1rem;
    color: #555;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-section strong {
    color: #333;
    font-weight: 600;
}

.policy-section em {
    color: #666;
    font-style: italic;
}

/* Table Styles */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.policy-table th {
    background: #1a2238;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.policy-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:nth-child(even) {
    background: #f8f9fa;
}

.policy-table tr:hover {
    background: #f0f2f5;
}

/* Links */
.policy-section a {
    color: #2196f3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #1976d2;
    text-decoration: underline;
}

/* Policy Footer */
.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 1rem 0.5rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .policy-table {
        font-size: 0.85rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.5rem 0.25rem;
    }
}

/* Print Styles */
@media print {
    .policy-container {
        max-width: none;
        padding: 0;
    }
    
    .policy-content {
        box-shadow: none;
        padding: 0;
    }
    
    .policy-header {
        border-bottom: 1px solid #000;
    }
    
    .policy-section h2 {
        border-bottom: 1px solid #000;
    }
    
    .policy-table {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .policy-table th {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
}
