.dernier-titre {
    margin-top: 20px;
    text-align: center;
    font-size: 1.1em;
    color: #222;
}

.presentation-section {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin: 50px auto;
    gap: 20px;
}

.presentation-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.presentation-text {
    background: white;
    padding: 25px;
    border-radius: 6px;
    text-align: justify;
    border: 1px solid #ddd;
    line-height: 1.4;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.presentation-logo img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.dernier-numero {
    width: 40%;
    background: white;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dernier-numero h2,
.dernier-numero h3 {
    text-align: center;
    margin-bottom: 15px;
}

.dernier-numero img {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .presentation-section {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    .presentation-left,
    .dernier-numero {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .presentation-section {
        margin: 20px auto;
    }
    .presentation-text,
    .dernier-numero {
        padding: 15px;
        font-size: 15px;
    }
}
