/* Legal Pages Styles */
.legal-page {
    max-width: 900px;
    margin: 50px auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-header h1 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.legal-content {
    line-height: 1.8;
}



.legal-section h2 {
    color: #2c5aa0;
    font-size: 1.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-section h3 {
    color: #34495e;
    font-size: 1.25rem;
    margin-top: 2rem;
}

.legal-section p {
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie Policy Table */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background-color: #2c5aa0;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    font-size: 0.9rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Cookie Management Button */
#manage-cookies {
    margin-top: 1rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 1rem 20px 3rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .legal-section p {
        text-align: left;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }

    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 1rem 15px 2rem;
    }

    .legal-header {
        margin-bottom: 2rem;
    }

    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section ul,
    .legal-section ol {
        padding-left: 1.5rem;
    }
}

/* Print Styles for Legal Pages */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    #manage-cookies {
        display: none !important;
    }

    .legal-page {
        padding: 0;
        max-width: none;
        margin: 0;
    }

    .legal-header {
        border-bottom: 2px solid #000;
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        border-bottom: 1px solid #000;
        color: #000;
    }

    .legal-section h3 {
        color: #000;
    }

    .contact-info {
        border: 1px solid #000;
        background-color: #f5f5f5;
    }

    .cookie-table table {
        border: 1px solid #000;
    }

    .cookie-table th {
        background-color: #f0f0f0 !important;
        color: #000 !important;
        border-bottom: 2px solid #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
