body {
    background: #f5f5f5;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

.support-wrapper {
    max-width: 1450px;
    margin: 0 auto;
    padding: 30px 30px 50px 30px;
}

.vimmer-logo {
    height: 110px;
    margin-left: 10px;
    margin-bottom: 15px;
}

.support-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.support-menu {
    margin-top: 25px;
}

.support-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: .2s;
}

    .support-menu-item:hover {
        background: #f7f7f7;
        color: #333;
    }

    .support-menu-item.active {
        background: #fff5ea;
        color: #e59b1f;
        font-weight: 600;
    }

.help-card {
    border: 1px solid #ececec;
    border-radius: 12px;
}

.feature-card {
    border: 1px solid #ececec;
    border-radius: 12px;
    transition: all .2s ease;
    cursor: pointer;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
    }

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.purple {
    background: #f2eaff;
    color: #6f42c1;
}

.orange {
    background: #fff3e4;
    color: #fd7e14;
}

.pink {
    background: #ffe6f2;
    color: #d63384;
}

.green {
    background: #e7f8ee;
    color: #198754;
}

.support-banner {
    background: #f4efff;
    border-radius: 16px;
    padding: 35px;
}

.btn-vimmer {
    background: #f0a030;
    color: white;
    border: none;
    font-weight: 600;
}

    .btn-vimmer:hover {
        background: #dd8f15;
        color: white;
    }

.list-group-item {
    padding: 14px 18px;
}

    .list-group-item:hover {
        background: #f8f8f8;
    }

.text-muted {
    color: #6c757d !important;
}

.footer-text {
    text-align: center;
    color: #999;
    padding: 25px;
    font-size: 13px;
}

*:focus-visible {
    outline: none;
}


html,
body {
    background-color: #f5f5f5 !important;
}