.support-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 60px 80px;
}

.support-section__title {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    margin: 0 0 30px;
}

.support-card {
    background: var(--green);
    border-radius: 20px;
    padding: 40px 50px;
    color: #fff;
    max-width: 700px;
}

.support-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.support-card__heading {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.support-card__tabs {
    display: flex;
    gap: 10px;
}

.support-card__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 36px;
    padding: 0 14px;
    border: 2px solid #fff;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.support-card__tab.active,
.support-card__tab:hover {
    background: #fff;
    color: var(--green);
}

.support-card__details {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
}

.support-card__details p {
    margin: 0;
}

.support-card__account {
    display: none;
}

.support-card__account.active {
    display: block;
}

.support-card__actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.support-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s;
}

.support-card__btn:hover {
    opacity: .85;
}

@media (max-width: 960px) {
    .support-section {
        padding: 30px 20px 60px;
    }

    .support-card {
        padding: 30px 24px;
    }

    .support-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .support-card__heading {
        font-size: 24px;
    }
}
