*{
    margin: 0;
    padding: 0;
    box-sizing:border-box
}
 
.qsn{
    background-color: #fff6ed;
    height: 80vh}
.bande{
    padding-top: 3%;
    text-align: center;
    color: #6b4423;
}
.carrétexte{
    text-align: center;
    height: 60vh;
    width: 35vw;
    background-color: #c59c6b;
    margin: 0 auto;
    border-radius: 25px;
}
.objectifs-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.pourquoi-titre,
.objectifs-titre {
    text-align: center;
    margin-bottom: 40px;
}

.objectifs-titre {
    margin-bottom: 60px;
}

.pourquoi-titre h1,
.objectifs-titre h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #6b4423;
    display: inline-block;
}

 

.pourquoi-container {
    margin-bottom: 80px;
}

.pourquoi-card {
    background-color: #c59c6b;
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.8;
    color: #000000;
    text-align: center;
}

.objectifs-container {
    margin-top: 80px;
}

.objectifs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.objectif-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #c59c6b;
    flex: 0 1 300px;

}

.objectif-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.objectif-numero {
    width: 60px;
    height: 50px;
    text-align: center;
    margin-left: 35%;

}
.objectif-card p {
    padding-top: 10px;
}