
    h2.wheretostart-head {
        text-align: center;
        margin-bottom: 40px;
        margin-top: 0;
    }

    .card-plans-1 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        
    }

    a.wherecard {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-decoration: none;
        color: white;
        transition: all .3s ease-in-out;
        padding: 20px;
    }

    .wherecard .icon img {
        width: 100%;
        height: 100px;
        object-fit: contain;
    }

    .wherecard .copy p {
        color: white;
        font-weight: 600;
        margin: 20px 0;
        text-align: center;
    }

    .wherecard .link {
        background: white;
        width: 50px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wherecard .link i {
        font-size: 20px;
    }

    .wherecard:hover {
        transform: scale(1.05);
    }

    @media (max-width:1199px) {
        .card-plans-1 {
            grid-template-columns: repeat(3, 1fr);
        }

        .wherecard .copy p {
            margin: 15px 0;
        }
    }

    @media (max-width:767px) {
        .card-plans-1 {
            grid-template-columns: 1fr;
        }

        .wherecard .icon img {
            height: initial;
        }

        .wherecard .link {
            width: 40px;
        }

        .wherecard .link i {
            font-size: 16px;
        }
    }
