.tariff-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
}

.t-card {
    flex: 0 0 80%;
    max-width: 300px;
    background-color: #000;
    color: #fff;
    border-radius: 32px;
    padding: 20px;
    scroll-snap-align: start;
}

.t-card h3 {
    color: #e2b139;
    margin-bottom: 10px;
    font-size: 20px;
}

.t-card p {
    font-weight: bold;
    margin-bottom: 10px;
}

.t-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.t-card button {
    background-color: #e2b139;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.t-card button:hover {
    background-color: #c7972f;
}
