/* Legal pages & cookie consent */
.legal-content-card {
    text-align: left;
    height: auto;
}

.legal-content-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.legal-content-card h2:first-of-type {
    margin-top: 0;
}

.legal-content-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #343f52;
}

.legal-content-card p,
.legal-content-card li {
    color: #5c6778;
    line-height: 1.75;
}

.legal-content-card ul {
    padding-left: 1.25rem;
}

.legal-content-card .legal-toc {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(30, 60, 114, 0.08);
}

.legal-content-card .legal-toc a {
    color: #3f78e0;
    text-decoration: none;
}

.legal-content-card .legal-toc a:hover {
    text-decoration: underline;
}

.legal-contact-box {
    background: linear-gradient(135deg, rgba(63, 120, 224, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #3f78e0;
}

.footer-business-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.footer-business-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-business-info a:hover {
    text-decoration: underline;
}

.footer-legal-inline a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    text-decoration: none;
    margin: 0 0.35rem;
}

.footer-legal-inline a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cookie consent banner — bottom left */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10050;
    max-width: 400px;
    width: calc(100% - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 60, 114, 0.2), 0 0 0 1px rgba(30, 60, 114, 0.06);
    padding: 1.25rem 1.35rem;
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.35s ease, visibility 0.35s;
}

.cookie-consent-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-banner h6 {
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-banner h6 i {
    color: #3f78e0;
    font-size: 1.1rem;
}

.cookie-consent-banner p {
    font-size: 0.8rem;
    color: #5c6778;
    margin-bottom: 1rem;
    line-height: 1.55;
}

.cookie-consent-banner .btn-group-cookie {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-consent-banner .btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
}

.cookie-settings-panel {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.cookie-settings-panel.is-open {
    display: block;
}

.cookie-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #343f52;
    margin-bottom: 0.15rem;
}

.cookie-category small {
    display: block;
    font-size: 0.72rem;
    color: #959ca9;
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .cookie-consent-banner {
        left: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        max-width: none;
    }
}
