.menu-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.menu-item:hover {
    color: var(--primary-hover-color);
}

.menu-item.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.content-section {
    display: none;
    opacity: 0;
    animation: fadeOut 1s ease forwards;
}

.content-section.active {
    display: block;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#cover {
    position: relative;
}

#cover-jadi-nasabah {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#cover .absolute {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 10;
}
@media (max-width: 767px) {
    #cover .absolute {
        position: absolute;
        top: 50%;
        left: 10%;
        z-index: 10;
    }
}

.list-disc {
    list-style: none;
}

.list-disc > li {
    position: relative;
}

.list-disc > li:before {
    content: "\25CF";
    margin-right: 10px;
    font-size: 20px;
    color: var(--primary-color);
}

.list-disc > li:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-left: 2px solid var(--primary-color);
    margin-left: 5px;
    height: 120%;
}

.list-disc > li:first-of-type:after {
    top: 50%;
}

.list-disc > li:last-of-type:after {
    top: -50%;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

#jadi-nasabah {
    display: flex;
    justify-content: center;
    align-items: center;
}

#jadi-nasabah img {
    max-width: 100%;
    height: auto;
}

#jadi-nasabah {
    display: flex;
    justify-content: center;
    align-items: center;
}

#jadi-nasabah img {
    max-width: 100%;
    height: auto;
}
