@import url(root.css);

.support-section {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 100px;
}

.support-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-section p {
    margin-bottom: 2rem;
}

.support-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.support-contact {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-contact i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.support-contact p {
    margin: 0;
}


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

    .support-contacts {
        flex-direction: column;
        align-items: stretch;
    }

    .support-contact {
        margin: 1rem 0;
    }
}

