section {
    margin-bottom: 90px;
}

section:first-child {
    padding-top: 38px;
}

section header {
    margin-bottom: 48px;
    text-align: center;
}

section header h1 {
    margin-bottom: 16px;
}

section header .sub-title {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.contact-us {
    display: grid;
    gap: 32px;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.card {
    border-radius: 24px;
    background-color: #0f72ff;
    padding: 34px 20px;
    color: #fff;
}

.card-content{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.card .title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.card-image {
    flex-shrink: 0;
    width: 140px;
}

.card-image img{
    width: 100%;
}

.email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.email a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: none;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
}

.faq-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-wrapper li {
    border-bottom: 1px solid #c4c4d4;
}

.faq-wrapper .question {
    font-weight: 600;
    font-size: 18px;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-wrapper .question svg {
    flex-shrink: 0;
    transform: rotate(180deg);
}

.faq-wrapper .answer {
    display: none;
    line-height: 150%;
    padding: 0 100px 40px 0;
}

.faq-wrapper li.active .question svg {
    transform: rotate(0deg);
}

.faq-wrapper li.active .answer {
    display: block;
}

.switcher{
    display: none;
}

.card > .email{
    display: none;
}

@media (max-width: 1024px) {
    .contact-us {
        display: block;
    }

    .card:first-child {
        margin-bottom: 32px;
    }

    .card {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    section {
        margin-bottom: 45px;
    }

    section header {
        margin-bottom: 24px;
    }

    section header h1 {
        margin-bottom: 8px;
    }

    .switcher{
        display: block;
        background-color: #d4d4d4;
        border-radius: 40px;
        padding: 5px;
        margin-bottom: 32px;
    }

    .switcher ul{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .switcher ul li{
        font-size: 15px;
        font-weight: 600;
        color: #000;
        width: 100%;
        text-align: center;
        padding: 11px 15px;
        border-radius: 40px;
        cursor: pointer;
    }

    .switcher ul li.active{
        background-color: #fff;
    }

    .card-image{
        width: 57px;
    }

    .card .title{
        display: none;
    }

    .card-content .email{
        display: none;
    }

    .card > .email{
        display: flex;
    }

    .card{
        display: none;
    }

    .card.active{
        display: block;
    }
}