main {
    padding: 20px;
}

.announcement, .benefits, .how-it-works, .commandes {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.announcement h2, .benefits h2, .how-it-works h2, .commandes h2 {
    font-size: 2rem;
    color: #ff6347;
    margin-bottom: 15px;
}

.benefit-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
}

.card h3 {
    font-size: 1.5rem;
    color: #ff6347;
}

.card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}




.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;
}