body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ff99cc, #9966cc, #003366);
    color: #ffffff;
}

header {
    background-color: #f1a7dc;
    padding: 30px;
    text-align: center;
    margin-bottom: 80px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #c564d8;
    margin-left: 20px;
}

nav {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    padding-right: 10%;
}

nav li {
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #c564d8;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #d599f1;
}

.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 10px 0;
    }
}

.timeline-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
}

.timeline-container {
    position: relative;
    margin: 40px auto;
    padding: 20px 0;
    width: 90%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: white;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.timeline-item:nth-child(odd) .bubble {
    transform: translateX(-120%);
}

.timeline-item:nth-child(even) .bubble {
    transform: translateX(120%);
}

.bubble {
    background: #fce4ec;
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 250px;
    min-height: 120px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .timeline-container {
        width: 95%;
    }

    .timeline-item {
        width: 100%;
        text-align: center;
        display: block;
    }

    .timeline-container::after {
        left: 10px;
    }

    .bubble {
        margin: auto;
    }
}

/* ---- Conclusion en dessous ---- */
.conclusion-section {
    display: flex;
    justify-content: center;
    margin: 60px auto;
    width: 90%;
}

.bubble-full {
    background: #f8bbd0;
    color: #333;
    padding: 30px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}