:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gradient-bg {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.step-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #3D2914;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.uninstallf {
    position: fixed;
    bottom: 0;
}

.footer-link {
    position: relative;
}

.footer-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1rem;
    background-color: #d1d5db;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #038aa8;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-height: 615px) {
    footer:not(.uninstallf) {
        position:relative
    }
}

@media (max-width: 391px) and (max-height:750px) {
    footer:not(.uninstallf) {
        position:relative
    }
}