.section-package {
    background: var(--primary-beige);
    padding-top: 0;
    overflow: hidden;
}

.section-package .section-heading {
    gap: 0;
}

.section-package .section-heading .title {
    background: var(--primary-beige);
    padding: 40px 0 20px 0;
}

.package-video {
    height: 680px;
}

.package-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-content {
    margin-top: -115px;
}

.package-lists {
    padding: 0;
}

.package-lists .swiper-wrapper {
    align-items: stretch;
}

.package-lists .swiper-slide {
    height: auto;
}

.package-lists .swiper-background {
    padding: 40px;
    background: var(--primary-white);
    min-width: 320px;
    height: 100%;
}

.package-lists .swiper-background p {
    margin: 0;
    padding: 0;
}

.package-lists .swiper-background .heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-lists .swiper-background .heading p {
    font-size: 14px;
}

.package-lists .swiper-background .heading .title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-lists .swiper-background .heading .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.package-lists .swiper-background .heading span {
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
}

.package-lists .swiper-background .header {
    font-size: 14px;
    padding: 24px 0;
    line-height: 1.285;
}

.package-lists .swiper-background .items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.package-lists .swiper-background .items > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-lists .swiper-background .items p {
    font-size: 16px;
    line-height: 1.375;
}

.package-lists .swiper-background .items .title {
    font-weight: 700;
    margin-bottom: 4px;
}

.package-footer-button {
    text-align: center;
    padding-top: 40px;
}

@media (max-width: 1440px) {
    .package-video {
        height: 550px;
    }

    .package-content {
        margin-top: -100px;
    }
}

@media (max-width: 992px) {
    .package-content {
        margin-top: 0
    }
}

@media (max-width: 768px) {
    .package-video {
        height: 320px;
    }

    .section-package .section-heading .title {
        padding-bottom: 16px;
    }

    .section-package .section-heading p:not(.title) {
        font-size: 14px;
    }

    .package-lists .swiper-background {
        padding: 24px;
        background: var(--primary-white);
        min-width: auto;
    }

    .package-lists .package-slides {
        overflow: visible;
    }

    .package-lists .swiper-slide {
        max-width: 320px;
        transition: opacity 0.3s ease-in-out;
    }

    .package-lists .swiper-slide-prev {
        opacity: 0;
    }

    .package-lists .swiper-slide:nth-last-child(2) {
        opacity: 1;
    }

    .package-lists .swiper-background .heading span {
        font-size: 18px;
    }

    .package-lists .swiper-background .heading p {
        font-size: 12px;
    }
}