.tarifs-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.tarifs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tarifs-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.tarifs-grid {
    display: grid;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tarifs-category {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tarifs-category h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.category-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
}

.tarifs-table {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.table-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
}

.table-row:not(.header):nth-child(even) {
    background: #f8f9fa;
}

.table-row > div {
    padding: 0.5rem;
}

.tarifs-contact {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-box p {
    color: #637381;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .tarifs-hero h1 {
        font-size: 2rem;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }

    .table-row.header {
        display: none;
    }

    .table-row > div {
        padding: 0.25rem;
    }

    .table-row > div:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    .contact-box {
        margin: 1rem;
        padding: 1.5rem;
    }

    .contact-box h2 {
        font-size: 1.5rem;
    }
}

