/* Legal Pages Specific Styles */
.legal-content {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 70vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-header h1 {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
}

.legal-body {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-section h3 {
    color: #004499;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section li strong {
    color: #0066cc;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #0066cc;
}

.contact-info p {
    margin-bottom: 10px;
    color: #333;
}

.contact-info strong {
    color: #0066cc;
}

.legal-footer {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.legal-footer p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

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

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

.cookie-table th {
    background: #0066cc;
    color: white;
    font-weight: 600;
}

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

.cookie-table td:first-child {
    font-weight: 600;
    color: #0066cc;
}

.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

.cookie-controls .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }

    .legal-header {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

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

    .legal-body {
        padding: 40px 20px;
    }

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

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

    .legal-footer {
        padding: 30px 20px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

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

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

    .contact-info {
        padding: 20px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* Print Styles for Legal Pages */
@media print {
    .legal-content {
        padding: 20px 0;
        background: white;
    }

    .legal-header,
    .legal-body,
    .legal-footer {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .legal-header {
        margin-bottom: 20px;
    }

    .legal-footer {
        margin-top: 20px;
    }

    .contact-buttons {
        display: none;
    }

    .cookie-controls {
        display: none;
    }

    .cookie-table table {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
