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

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #cccbcc;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Header */
.header {
    background-color: #e6017f;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo {
    height: 50px; /* Ajuste la hauteur selon ton besoin */
    vertical-align: middle;
    margin-right: 15px; /* Espace entre le logo et le texte */
}



.header h1 {
    font-size: 2rem;
}

/* Sections */
section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.5rem;
    color: #e6017f;
    margin-bottom: 10px;
}

section p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Links */
a {
    color: #e6017f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.footer p {
    font-size: 0.9rem;
}
