/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #141414;
    color: #fff;
    line-height: 1.6;
}

h1, h2 {
    color: #ff6a00;
}

p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 15px;
}

a {
    color: #00abf0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #ffffff;
    font-weight: 600;
}

.navbar a {
    font-size: 18px;
    color: #ffffff;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover {
    color: #00abf0;
}

/* Section Mentions Légales */
.mentions-legales {
    max-width: 800px;
    margin: 120px auto 50px;
    padding: 20px;
    background-color: #1b1b1b;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 106, 0, 0.5);
}

.mentions-legales h1 {
    text-align: center;
    margin-bottom: 20px;
}

.mentions-legales h2 {
    margin-top: 20px;
}

.container {
    padding: 20px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background-color: #1b1b1b;
    color: #fff;
    font-size: 14px;
    margin-top: 50px;
}

.footer a {
    color: #ff6a00;
    font-weight: bold;
}
