/* Legal Pages - Stili condivisi */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #5b91d5;
    text-decoration: none;
}

a:hover {
    color: #254672;
    text-decoration: underline;
}

/* Header */
.legal-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 20px;
}

.legal-header__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
}

.legal-header__logo img {
    height: 28px;
    width: auto;
}

.legal-header__logo span {
    font-weight: 600;
    font-size: 0.95rem;
}

.legal-header__back {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    flex: 1;
    width: 100%;
}

.legal-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.legal-content .legal-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #254672;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    margin-bottom: 14px;
    color: #374151;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 6px;
    color: #374151;
}

.legal-content strong {
    color: #1a1a1a;
}

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

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

.cookie-table th {
    background: #254672;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

.cookie-table td {
    background: #fff;
}

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

/* Info box */
.legal-info-box {
    background: #f0f7ff;
    border-left: 4px solid #5b91d5;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.legal-info-box p {
    margin: 0;
    color: #254672;
}

/* Footer */
.legal-footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 24px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

.legal-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 12px;
}

.legal-footer__links a {
    color: #5b91d5;
    font-weight: 500;
}

.legal-footer__links a:hover {
    color: #254672;
}

.legal-footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 28px 16px 40px;
    }

    .legal-content h1 {
        font-size: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }

    .cookie-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .legal-header__logo span {
        display: none;
    }

    .legal-content h1 {
        font-size: 1.3rem;
    }
}
