/* Legal Pages Styles */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-notice {
    background: linear-gradient(135deg, rgba(14, 13, 84, 0.03), rgba(10, 0, 233, 0.03));
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0 10px 10px 0;
}

.legal-notice p {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.legal-notice p:last-child {
    margin-bottom: 0;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-contact-details {
    background: rgba(14, 13, 84, 0.02);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.legal-contact-details p {
    margin-bottom: 0.4rem;
}

/* Footer Legal Links */
.footer-legal {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }

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

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

    .legal-notice {
        padding: 1rem 1.5rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.2rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 700px;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-banner-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(10, 0, 233, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        text-align: center;
    }
}
