/* Conteneur principal du groupe */
.assime-service-group {
    margin-bottom: 40px;
}

/* Titre de groupe */
.assime-group-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #009e12;
}

/* Zone scrollable */
.assime-services-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;

    /* Masque les ascenseurs */
    scrollbar-width: none;          /* Firefox */
}
.assime-services-scroll::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari/Edge */
}

/* Ligne de cartes */
.assime-services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: stretch;
    scroll-behavior: smooth;
}

/* Cartes */
.assime-service-card {
    flex: 0 0 320px;        /* largeur d’une carte */
    background: #fff;
    border-radius: 16px;
    border: 2px solid #009e12;
    box-shadow: 0 6px 16px rgba(0,0,0,0.07);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .25s ease;
}

/* Effet hover */
.assime-service-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    border-color: #009e12;
}

/* Header */
.assime-card-header {
    margin-bottom: 15px;
}
.assime-service-title {
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 600;
    color: #009e12;
}
.assime-service-price {
    font-size: 20px;
    font-weight: 700;
    color: #009e12 !important;
}

/* Description */
.assime-card-body {
    flex-grow: 1;
    margin-bottom: 15px;
}
.assime-service-description p {
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.assime-card-footer {
    text-align: center;
    margin-top: auto;
}

/* Bouton ou action dans le footer */
.assime-card-footer button,
.assime-card-footer a {
    display: inline-block;
    background: #009e12;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background .25s ease;
}

.assime-card-footer button:hover,
.assime-card-footer a:hover {
    background: #007f0e; /* plus foncé */
}