body {
    margin: 0;
    /* padding: 40px; */
}

.container {
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
}

/* Section du haut */
.top-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-section img {
    width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-right {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

h2{
    font-size: 30px;
    color: #FE00FA;
}

/* Section du bas */
.bottom-section {
    margin-top: 50px;
    text-align: center;
    
}

.bottom-section p {
    margin: 15px;
}

.publication-link{
    color: #FE00FA;
}

a {
    color:#FE00FA;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #555;
}

/* 🔹 Responsive pour mobile */
@media (max-width: 768px) {
    .top-section {
        flex-direction: column; /* empile image + texte */
        text-align: center;
    }

    body {
        padding: 20px;
    }
}