﻿.supportSection {
    background: linear-gradient(to bottom,#ECECFD 67%,#6565EE 33%);
    padding: 54px 0;
}

.supportCardContainer {
    background-color: white;
    display: flex;
    margin: auto;
    flex-direction: column;
    gap: 2rem;
    padding: 24px 32px;
    align-items: center;
    max-width: 500px;
}


.supportButton {
    padding: 13px 87.5px;
    gap: 16px;
    border-radius: 4px;
    border: 1px solid black;
    background-color: transparent;
    display: flex;
    cursor: pointer;
    width: 327px;
    height:52px;
    color: black;
    font-family: 'ICPangeaText';
}

    .supportButton img {
        width: 24px;
        height: 24px;
    }


@media screen and (max-width:768px) {
    .supportSection {
        padding: 44px 0;
    }

    .supportCardContainer {
        max-width: 264px;
    }
        .supportCardContainer h2 {
            text-align: center;
        }
    .supportButton {
        height: 52px;
        width: 280px;
        padding: 13px 0;
        justify-content: center;
    }
}