/* Variables pour les couleurs pastel */
:root {
    --primary-color: #a8dadc; /* Bleu pastel */
    --secondary-color: #bde0fe; /* Mauve pastel */
    --accent-color: #cdb4db; /* Violet pastel */
    --text-color: #264653; /* Bleu foncé */
    --background-color: #f1faee; /* Blanc cassé */
    --button-color: #98d8d8; /* Vert pastel */
    --button-hover-color: #6b5b95; /* Violet foncé */
}

/* Style global */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 20px;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Conteneur principal */
.privacy-policy-container,
.terms-container {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

/* Titres */
h2 {
    color: var(--text-color);
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    color: var(--text-color);
    font-size: 1.5em;
    margin-top: 20px;
}

/* Paragraphes et listes */
p {
    margin-bottom: 15px;
}

ul, ol {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Liens */
a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: var(--button-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    text-align: center;
}

a:hover {
    background-color: var(--button-hover-color);
    color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
    html, body {
        height: 100vh;
        min-height: 100vh;
        
    }
    body {
        padding: 5px;
        min-height: 100vh;
        padding-bottom: 0;
        position: relative;
    }
    .privacy-policy-container,
    .terms-container {
        padding: 10px;
        border-radius: 10px;
        width: 98%;
        max-width: 98vw;
        box-sizing: border-box;
        margin: 10px auto;
    }
    h2 {
        font-size: 1.3em;
    }
    h3 {
        font-size: 1.1em;
    }
    p, li, a {
        font-size: 14px;
    }
}