@font-face {
    font-family: 'WantedSansVariable';
    src: url('assets/fonts/wanted_sans/WantedSans-1.0.1/variable/WantedSansVariable.ttf') format('ttf'),
         url('assets/fonts/wanted_sans/WantedSans-1.0.1/otf/WantedSans-Regular.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

.support-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.25rem;
    font-family: 'WantedSansVariable', sans-serif;
}

.support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    width: 100%;
    gap: 60px;
}

.support-icon, .support-call-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.support-text {
    max-width: 30rem;
    text-align: left;
    margin-right:2rem;
}

.support-text h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.support-text .highlight {
    background: linear-gradient(to right, #007bff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.call-button, .end-call-button {
    background-color: #007bff;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    padding: 0.75rem;
    cursor: pointer;
}

.end-call-button {
    background-color: red;
}

strong {
    color: #707070
}

p strong {
    transition: color 0.3s ease;
}

p strong:hover {
    color: #007bff;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .support-text h2 {
        font-size: 2.5rem;
    }

    .support-text p {
        font-size: 1rem;
    }

    .support-content {
        max-width: 70rem;
    }
}

@media screen and (max-width: 992px) {
    .support-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .list-of-cards {
        flex-direction: row;
        justify-content: center;
    }

    .card {
        flex: 1 1 45%;
    }

    .large-card {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 768px) {
    .support-section {
        padding: 2rem 1rem;
    }

    .support-text h2 {
        font-size: 3rem;
    }

    .support-text p {
        font-size: 0.95rem;
    }

    .list-of-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;
        max-width: 300px;
    }

    .support-actions {
        justify-content: center;
    }
}