.top-container {
    height: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    font-weight: 600;
    font-size: 2em;
    color: #8193F2;
    padding-top: 100px;
}

.left-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.right-container {
    padding: 20px;
    background: #fff;
}

.content-body {
    width: 400px;
    height: 300px;
    background: #8193F2;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
    overflow: hidden;
    z-index: 1;
}

.content-body::before {
    content: '';
    width: 400px;
    height: 300px;
    position: absolute;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
    transform: translateX(20px) translateY(-10px);
    background: #8193F2;
    z-index: -1;
}

.content-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-container {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    overflow-wrap: break-word;
    color: #333;
    gap: 40px;
}

.right-container ul {
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.right-container ul li {
    font-size: 1.1em;
}

.right-container ul img {
    width: 45px;
    height: 45px;
}

/* Layanan */
.container-layanan {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 10;
}

.body-layanan {
    display: flex;
    justify-content: center;
    align-items: center;
}

.layanan-container {
    background: #8193F2;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0 100px 0 100px;
    color: #fff;
    gap: 20px;
}

.layanan-container span {
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
}

.content-layanan {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    gap: 20px;
}

.content-layanan a {
    color: white;
    width: 100%;
    min-width: 100px;
    height: auto;
    text-decoration: none;
    transition: .3s;  
    z-index: 10;
}

.content-layanan a:hover {
    transform: translateY(-8px);
    opacity: 50%;
}

.content-layanan a ul {
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.content-layanan a ul img {
    display: flex;
    justify-content: center;
    align-items: center;
}






