/* Timeline des étapes */
.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201, 169, 97, 0.2); /* Doré très clair */
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

/* Contact Box */
.contact-info-box {
    padding: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    background: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.calendly-inline-widget {
    min-width: 320px;
    height: 600px;
    margin-top: 0;
}
@media (min-width: 992px) {
    .calendly-inline-widget {
        height: 710px;
        margin-top: -100px;
    }
}