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

/* BASE */
body {
    font-family: 'Syne', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF640A;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FF640A;
}

.nav-links a:hover::after {
    width: 100%;
}

/* CONTENU LEGAL */
.legal-container {
    max-width: 920px;
    margin: 110px auto;
    padding: 0 20px;
}

.legal-container h1 {
    font-size: 3em; /* ↑ */
    color: #FF640A;
    margin-bottom: 12px;
}

.updated {
    font-family: 'Inter', sans-serif;
    font-size: 0.95em; /* ↑ */
    font-weight: 300;
    color: #666;
    margin-bottom: 70px;
}

section {
    margin-bottom: 55px;
}

section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4em; /* ↑ */
    font-weight: 600;
    color: #2E3688;
    margin-bottom: 14px;
}

section p,
section li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05em; /* ↑ */
    font-weight: 300;
    line-height: 1.75;
    color: #333;
}

section ul {
    margin-left: 22px;
}

section a {
    color: #3b5bdb;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background-color: rgba(46, 54, 136, 0.15);
    padding: 60px 80px 40px 80px;
    margin-top: 90px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px; /* ↑ */
    margin-bottom: 60px;
}

/* TITRES FOOTER */
.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8em; /* ↑ léger */
    font-weight: 400;
    letter-spacing: 0.09em;
    color: #FF640A;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* LIENS FOOTER */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px; /* ↑ */
}

.footer-column a {
    font-family: 'Inter', sans-serif;
    font-size: 1em; /* ↑ */
    font-weight: 300;
    color: #2b2b2b;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-column a:hover {
    color: #FF640A;
    transform: translateX(2px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 42px;
    border-top: 1px solid #E0E0E0;
}

.footer-logo {
    height: 24px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95em; /* ↑ */
    font-weight: 300;
    color: #666;
}
