/* Reset pour harmoniser le style entre les navigateurs */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Style pour l'en-tête du site */
header {
    background-color: #1976d2;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    margin-top: 10px;
    font-size: 14px;
    color: #bbdefb;
}

/* Style pour la navigation */
nav {
    background-color: #64b5f6;
    padding: 20px;
    text-align: center;
    border-radius: 50px;
    margin-top: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    margin: 0 10px;
    background-color: #1976d2;
    border-radius: 30px;
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 18px;
}

nav a:hover {
    background-color: #0d47a1;
}

/* Style pour le contenu avec des cercles */
.content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #1976d2;
}

/* Style pour les cercles */
.circle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.circle-item {
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 250px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.circle-item:hover {
    transform: translateY(-10px);
}

.circle-item img {
    max-width: 80%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.circle-item h3 {
    font-size: 20px;
    color: #1976d2;
    margin-bottom: 10px;
}

.circle-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Style pour le pied de page */
footer {
    background-color: #1976d2;
    color: white;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .circle-item {
        width: 200px;
        height: 200px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}

@media screen and (max-width: 480px) {
    .circle-item {
        width: 160px;
        height: 160px;
    }

    .circle-item h3 {
        font-size: 16px;
    }

    .circle-item p {
        font-size: 12px;
    }
}
