﻿.page-top-header{
    margin-bottom:1rem;
}

.impact-on-internet-speed {
    display: flex;
    justify-content: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    padding-top: 4rem;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 5rem;
    flex-direction: column;
}

@media only screen and (max-width:768px) {
    .impact-on-internet-speed {
        width: 100%;
        padding-top:2rem;
    }
}
    .impact-on-internet-speed h2 {
        margin-bottom: 1.5rem;
        font-weight: bold;
    }

.impact-on-internet-speed-row {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    min-height: 120px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}
        .impact-on-internet-speed-row:hover {
            transform: scale(1.01);
            background-color: #fbfbfb;
        }

        .impact-on-internet-speed-row img {
            min-width: 3rem;
            margin-right: 2rem;
        }

    .offer-variety {
        margin-bottom: 2rem;
    }

    .highlight-orange {
        color: var(--primary-color);
        font-weight: bold;
    }

    .what-speed {
        margin-bottom: 10rem;
    }

        .what-speed h2 {
            font-weight: bold;
            margin-bottom:1rem;
        }

    .what-speed-header-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }

@media only screen and (max-width:510px) {
    .what-speed-header-text h2{
        text-align:center;
    }
}

        .what-speed-header-text h2 {
            margin-bottom: 1rem;
        }

        .what-speed-header-text p {
            max-width: 900px;
            text-align: center;
        }

    .speed-grid-center {
        display: flex;
        justify-content: center
    }

    .speed-grid-container {
        display: grid;
        gap: 2rem;
        max-width: 1050px;
    }

    .grid-item {
        display: grid;
        grid-template-columns: 100px 1fr;
        align-items: flex-start;
        gap: 1rem;
        max-width:900px;
    }

    .icon {
        width: 80px;
        height: 80px;
    }

    .title {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin: 0 0 0.5rem;
    }