/* Style global pour la page de politique de confidentialité */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 60px;
}

header {
    background: #ffba08;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

header .logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

nav {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f06;
}

section.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffba08, #f06);
    color: white;
    text-align: center;
    padding: 0 20px;
}

section.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

section.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 20px;
    text-align: center;
}

.card {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.card .emoji {
    font-size: 50px;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    width: 100%;
}

footer p {
    font-size: 14px;
}

@media (max-width: 768px) {
    header .logo {
        font-size: 24px;
    }
    section.hero h1 {
        font-size: 48px;
    }
    section.hero p {
        font-size: 18px;
    }
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Style spécifique pour la page de politique de confidentialité */
section.policy-content {
    background-color: #fff;
    padding: 40px 20px;
    margin: 60px auto;
    border-radius: 8px;
    max-width: 900px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

section.policy-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

section.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

section.policy-content a {
    color: #f06;
    text-decoration: none;
}

section.policy-content a:hover {
    text-decoration: underline;
}

/* Style du bandeau de consentement des cookies */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 9999;
    display: none;
}

.cookie-consent button {
    background-color: #f06;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: #ffba08;
}
