body {
    font-family: 'Manrope', sans-serif;
}

.row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.left-section {
    padding: 64px 120px;
}

.left-section.options {
    padding: 64px 120px 64px 80px;
}

.custom-icon {
    font-size: 32px;  /* Ubah ukuran */
    color: #13CB99;   /* Ubah warna */
}

.brand-logo img {
    width: 108.829px;
    height: auto;
}

.option-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
}

.options-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    flex: 1; /* Biarkan elemen menyesuaikan lebar dengan space yang ada */
    min-height: 150px;
    border: 1px solid var(--color-grey-70);
    width: 40%;
    border-radius: 16px;
}

.options-card i {
    font-size: 1.5rem;
}

.options-card input[type="radio"] {
    appearance: none;
    position: relative;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: inline-block;
    border: 1px solid var(--color-grey-80);
    border-radius: 9999px;
}

/* Ubah indikator saat radio dicheck */
.options-card input[type="radio"]:checked {
    border-color: var(--color-secondary, #fff); /* Warna border saat checked */
    background-color: var(#fff); /* Warna latar saat checked */
}

.options-card input[type="radio"]:checked::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--color-secondary);
    border-radius: 99999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.options-card:has(input[type="radio"]:checked) {
    background: var(--color-grey-10);
}

.options-card:hover{
    background: var(--color-grey-10);
}


.image-section {
    position: relative;
}

.image-section img {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 6rem;
    left: 0;
    right: 0;
    padding: 0 6rem;
    border-radius: 8px;
    color: white;
}

.icon-box i {
    font-size: 48px;
}

.icon-box i:before {
    padding: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.30);
}

.icon-box .number {
    font-size: 20px;
}

.scrollable-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 100vh;
    overflow-y: auto;
}

.scrollable-content::-webkit-scrollbar {
    display: none; /* Hilangkan scrollbar di Chrome & Safari */
}