.top-section {
    margin-top: 32px;
}
.top-section img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: auto;
}
.top-section h1 {
    margin-top: 24px;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
}
.top-section h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
}
.top-section p {
    color: var(--text-400);
    margin: 24px 0;
    text-align: center;
}
.top-section .btn {
    margin: 24px auto 32px;
    display: block;
    width: max-content;
}
.vip-benefits__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.vip-benefits__list .vip-benefits__item {
    width: calc((100% - 16px * 2) / 3);
    background-color: var(--bg-700);
    padding: 24px;
    border: 2px solid var(--border-600);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.vip-benefits__list .vip-benefits__item img {
    width: auto;
    max-width: 100%;
    height: 46px;
}
.vip-benefits__list .vip-benefits__item h3 {
    font-size: 14px;
    font-family: var(--main-b);
}
.vip-benefits__list .vip-benefits__item .vip-benefits__arrow {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 16px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-1200);
    z-index: 1;
}
.vip-benefits__list .vip-benefits__item svg {
    color: #f46121;
    width: 16px;
    height: 16px;
}
.vip-journey__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.vip-journey__list .vip-journey__item {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    background-color: var(--bg-900);
    width: calc((100% - 16px) / 2);
}
.vip-journey__list .vip-journey__item img {
    width: 56px;
    height: auto;
}
.vip-journey__list .vip-journey__item h3 {
    font-size: 16px;
    font-family: var(--main-b);
    margin-bottom: 4px;
    text-align: left;
}
.vip-journey__list .vip-journey__item p {
    font-size: 14px;
    margin: 0;
    color: var(--text-400);
    text-align: left;
}
@media(max-width: 767px) {
    .top-section {
        margin-top: 24px;
    }
    .top-section h1 {
        margin-top: 16px;
        font-size: 32px;
        line-height: 48px;
    }
    .top-section h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .top-section p {
        color: var(--text-400);
        margin: 16px 0;
    }
    .top-section .btn {
        margin: 16px auto 24px;
    }
    .vip-benefits__list {
        gap: 8px;
    }
    .vip-benefits__list .vip-benefits__item {
        width: calc((100% - 8px ) / 2);
        padding: 16px;
        gap: 8px;
    }
    .vip-journey__list {
        gap: 8px;
    }
    .vip-journey__list .vip-journey__item {
        padding: 16px;
        gap: 8px;
        width: 100%;
    }
}