#votre_journee {
    display: flex;
    scroll-margin-top: var(--header-height);
    text-align: center;
    flex-direction: column;
    background-color: #eceeeb;
    padding: 0 20px 20px 20px;
}

.cards_main_container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cards_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step-card {
    display: flex;
    width: 400px;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-5px);
}

.card-text {
    padding: 1.5rem 1rem 1rem 1rem;
    font-family: 'Playfair Display', serif;
}

.card-text h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5em 0;
}

.card-text p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #555;
}

.step-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}