.announcement, .what-to-do {
    background-color: #ffffff;
    padding: 50px;
    margin: 30px auto;
    max-width: 1000px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.announcement h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.announcement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* Section Pourquoi */
.what-to-do {
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.what-to-do h2 {
    font-size: 2.3rem;
    color: #00bfae;
    margin-bottom: 20px;
}

.what-to-do p {
    font-size: 1.2rem;
    color: #333;
    max-width: 900px;
    margin: 0 auto 20px;
}

.benefit-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}


/* Section How It Works */
.how-it-works, .commandes {
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}

.how-it-works h2, .commandes {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.how-it-works p, .commandes {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
}

.commandes {
    border: 1px solid #00bfae;
    border-radius: 20px;
    box-shadow: 0 1px 2px #000;
}


.commandes h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.commandes table {
    width: 100%;
    margin: 40px auto;
    border-collapse: separate;
    border-spacing: 0px 15px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 0px 15px;
    cursor: default;
}

.commandes th, .commandes td {
    padding: 20px;
    text-align: left;
}

.commandes th {
    color: #444;
    font-size: 1.3rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.commandes tr {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.commandes tbody tr:hover {
    background-color: #e6f7f7;
}

.commandes td {
    font-size: 1.2rem;
    color: #444;
    border-bottom: 1px solid #ddd;
}

.commandes td code {
    background-color: #eef;
    padding: 6px 10px;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
    font-size: 1rem;
}