.itv-internet-standard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.itv-internet-60ghz {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.itv-internet-product {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    color: white;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.itv-internet-product:hover {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.5);
}

.itv-internet-product h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Šířka čáry, můžete upravit dle potřeby */
    height: 2px;
    background-color: white;
}

.itv-internet-product h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 29px;
    line-height: 44px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.itv-internet-package {
    margin-bottom: 20px;
}

.itv-internet-package p {
    margin: 10px 0;
}

.itv-internet-package p:nth-child(1),
.itv-internet-package p:nth-child(2) {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: rgb(255, 255, 255);
}

.itv-price-yearly {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 29px;
    line-height: 44px;
    color: rgb(255, 255, 255);
}

.itv-price-info {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: rgb(255, 255, 255);
}

.itv-price-monthly {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: rgb(255, 255, 255);
}

.itv-internet-akce {
    margin-top: 15px;
    font-weight: bold;
    padding: 15px 0px 15px 0px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--e-global-color-6f812e0);
    border-radius: 10px;
}

.itv-internet-order {
    margin-top: auto;
}

.itv-order-btn {
    display: inline-block;
    padding: 15px 25px;
    background-color: white;
    color: rgb(18, 35, 47);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 21px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.itv-order-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .itv-internet-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .itv-internet-carousel {
        grid-template-columns: 1fr;
    }
}