.NosObjectifs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.section:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.Objectifs {
    width: 48%;
    text-align: left;
}

.Objectifs h2 {
    color: #0b0983;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta {
    text-align: center;
    background: linear-gradient(to bottom right, #007bff, #00d4ff);
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.cta h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.cta button {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.cta button:hover {
    background-color: #0056b3;
    color: white;
    border-color: #0056b3;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section {
        flex-direction: column;
        gap: 30px;
    }

    .Objectifs {
        width: 100%;
        text-align: center;
    }

    .Objectifs p {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .Objectifs h2 {
        font-size: 24px;
    }

    .Objectifs p {
        font-size: 16px;
    }

    .cta h3 {
        font-size: 28px;
    }

    .cta button {
        font-size: 16px;
    }
}
