/* Legal Pages Styling */

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 24px;
    line-height: 1.6;
    color: #374151;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E5E7EB;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 0.875rem;
    color: #6B7280;
    font-style: italic;
}

.legal-content {
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E5E7EB;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px 0;
}

.legal-section p {
    margin-bottom: 16px;
    text-align: justify;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    font-weight: 600;
    color: #111827;
}

.legal-section a {
    color: #16A34A;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
    color: #15803D;
}

/* Cookie table styling */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.875rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-table th {
    background-color: #F9FAFB;
    font-weight: 600;
    color: #374151;
}

.cookie-table tr:hover {
    background-color: #F9FAFB;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .legal-page {
        padding: 24px 16px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .cookie-table {
        font-size: 0.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
    
    /* Stack table on mobile */
    .cookie-table,
    .cookie-table thead,
    .cookie-table tbody,
    .cookie-table th,
    .cookie-table td,
    .cookie-table tr {
        display: block;
    }
    
    .cookie-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .cookie-table tr {
        border: 1px solid #E5E7EB;
        margin-bottom: 16px;
        padding: 12px;
        border-radius: 8px;
    }
    
    .cookie-table td {
        border: none;
        position: relative;
        padding-left: 50%;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .cookie-table td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: #374151;
    }
}

/* Print styles */
@media print {
    .legal-page {
        max-width: none;
        padding: 0;
    }
    
    .legal-header {
        border-bottom: 2px solid #000;
    }
    
    .legal-section h2 {
        border-bottom: 1px solid #000;
        page-break-after: avoid;
    }
    
    .legal-section {
        page-break-inside: avoid;
    }
}
