.tarifs-category {
    margin: 60px 0;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

/* Styles pour la page des tarifs */
/* .tarifs-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
} */

/* .tarifs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 3rem;
} */

/* .tarifs-category {
    margin-bottom: 4rem;
} */

.tarifs-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.tarifs-table th {
    background-color: var(--blue);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.tarifs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.tarifs-table tr:last-child td {
    border-bottom: none;
}

.tarifs-table tr:hover td {
    background-color: rgba(225, 247, 230, 0.5);
}

.table-section-header {
    background-color: var(--light-green);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.table-section-header td {
    padding: 10px 15px;
}

.details-link {
    color: var(--light-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.details-link i {
    margin-right: 5px;
}

.details-link:hover {
    color: var(--blue);
    transform: translateX(3px);
}

.featured-service {
    background-color: rgba(var(--blue-rgb), 0.1);
    border-left: 4px solid var(--blue);
    font-weight: 500;
}

.featured-service td {
    padding-top: 15px;
    padding-bottom: 15px;
}