<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Styles gĆ©nĆ©raux */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #f7f9fc, #eaeef3);
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    text-align: center;
    color: #0077b6;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #023047;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 40px;
}

ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

a {
    color: #0077b6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    margin: 30px auto;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, #0077b6, #0056b3);
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: linear-gradient(to right, #0056b3, #023e8a);
    transform: scale(1.05);
}

.highlight {
    color: #e63946;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}
</pre></body></html>