/* Styles spécifiques à la page Nos Offres */
.hero-offres {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../nos-offres/construction-offres.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #3b82f6;
}

/* Process steps */
.process-step {
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 4rem;
    height: 2px;
    background: #3b82f6;
    display: none;
}

@media (min-width: 768px) {
    .process-step:not(:last-child):after {
        display: block;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-offres {
        background-attachment: scroll;
    }
}


