body {
    font-family: "Times New Roman", Times, serif;
    background-color: #103c54;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-family: 'Poppins', sans-serif;
    color: white;
}

h2 {
    font-family: 'Merriweather', 'Cambria', serif;
    color: white;
    font-weight: bold;
}

p {
    font-family: 'Merriweather', 'Cambria', serif;
    color: white;
    font-size: 19px;
}

@media screen and (max-width: 600px) {
    .container {
        max-width: 90%;
    }

    p {
        font-size: 0.63rem;
    }

    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 0.8rem;
    }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
    .container {
        max-width: 90%;
    }

    p {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    p {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}


/* Header Section */
header {
    background-image: url('https://daytripidn.com/images/Header1.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #333333;
    padding: 60px 20px 40px 20px;
    text-align: center;
    height: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding-top: 20px;
}

.left {
    text-align: left;
}

.logo img {
    max-width: 200px;
}

.right {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item img {
    max-width: 30px;
    margin-right: 10px;
}

.company-info {
    text-align: left;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
    }

    .logo img {
        max-width: 80px;
    }

    .info-item {
        margin-left: 10px;
    }

    .info-item img {
        max-width: 18px;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 601px) and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        max-width: 180px;
    }

    .info-item img {
        max-width: 25px;
    }
}

/* Larger tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        max-width: 200px;
    }

    .info-item img {
        max-width: 30px;
    }
}

/* Top Navigation Section */
.topnav {
    background-color: #0d5c74;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topnav a {
    flex-grow: 1;
    color: #ffffff;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #0a4a5d;
    color: #ffffff;
}

.topnav a.active {
    background-color: #0a9ca5;
    color: white;
    font-size: 17px;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 395px) {
    .topnav a {
        display: block;
        text-align: center;
        padding: 7px 7px;
        font-size: 10px;
        flex-grow: 1;
    }

    .topnav.responsive a {
        display: block;
        text-align: center;
        padding: 7px 7px;
        width: auto;
    }

    .topnav a.active {
        font-size: 10px;
        background-color: #0a9ca5;
        color: white;
    }
}

@media screen and (min-width: 396px) and (max-width: 415px) {
    .topnav a {
        display: block;
        text-align: center;
        padding: 12px 7px;
        font-size: 10px;
        flex-grow: 1;
    }

    .topnav.responsive a {
        display: block;
        text-align: center;
        padding: 12px 8px;
        width: auto;
    }

    .topnav a.active {
        font-size: 10px;
        background-color: #0a9ca5;
        color: white;
    }
}

@media screen and (min-width: 416px) and (max-width: 435px) {
    .topnav a {
        display: block;
        text-align: center;
        padding: 12px 8px;
        font-size: 10px;
        flex-grow: 1;
    }

    .topnav.responsive a {
        display: block;
        text-align: center;
        padding: 12px 8px;
        width: auto;
    }

    .topnav a.active {
        font-size: 10px;
        background-color: #0a9ca5;
        color: white;
    }
}

@media screen and (min-width: 436px) and (max-width: 600px) {
    .topnav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .topnav a {
        display: block;
        text-align: center;
        padding: 14px 10.3px;
        font-size: 14px;
        flex-grow: 1;
    }

    .topnav .icon {
        display: block;
    }

    .topnav.responsive a {
        display: block;
        text-align: center;
        padding: 14px 10.3px;
        width: auto;
    }

    .topnav a.active {
        font-size: 14px;
        background-color: #0a9ca5;
        color: white;
    }
}

@media screen and (min-width: 601px) and (max-width: 825px) {
    .topnav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .topnav a {
        padding: 12px 16px;
        display: block;
        text-align: center;
        font-size: 16px;
        flex-grow: 1;
    }

    .topnav .icon {
        display: block;
    }

    .topnav a.active {
        font-size: 16px;
        background-color: #0a9ca5;
        color: white;
    }
}

@media screen and (min-width: 601px) and (max-width: 825px) {
    .topnav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .topnav a {
        padding: 12px 16px;
        display: block;
        text-align: center;
        font-size: 17px;
        flex-grow: 1;
    }

    .topnav .icon {
        display: block;
    }

    .topnav a.active {
        font-size: 17px;
        background-color: #0a9ca5;
        color: white;
    }
}

@media screen and (min-width: 826px) and (max-width: 1024px) {
    .topnav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .topnav a {
        padding: 15px 20px;
        display: block;
        text-align: center;
        font-size: 22px;
        flex-grow: 1;
    }

    .topnav .icon {
        display: block;
    }
}

/* Website Title Section */
.website-title {
    font-family: 'Bodoni', sans-serif;
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 30px;
    margin: 0;
}

/*carousel section*/
.owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #0c6e91;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #ffffff;
    font-size: 39px;
    background: #333;
    border-radius: 3px;
}

.owl-theme .owl-nav:hover [class*=owl-] {
    background-color: #222;
}

.owl-carousel .item {
    text-align: center;
}

.owl-carousel .nav-button {
    height: 50px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.owl-carousel .owl-prev {
    left: -40px;
}

.owl-carousel .owl-next {
    right: -40px;
}

.owl-theme .owl-nav [class*=owl-] {
    font-size: 39px;
    border-radius: 3px;
}

.owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}

.owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
}

/*whatsapp section*/
.whatsapp-button {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-button a {
    display: block;
    width: 100%;
    background-color: #25d366;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.whatsapp-button a img {
    margin-right: 10px;
    width: 30px;
    height: auto;
}

.whatsapp-button a:hover {
    background-color: #128C7E;
}

@media screen and (max-width: 600px) {
    .website-title {
        font-size: 19px;
        padding: 6px;
    }

    .owl-carousel .nav-button {
        height: 15px;
        width: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #333;
    }

    .owl-carousel .owl-prev {
        left: -20px;
    }

    .owl-carousel .owl-next {
        right: -20px;
    }

    .owl-theme .owl-nav [class*=owl-] {
        font-size: 25px;
        line-height: 10px;
        background-color: #333;
    }

    .whatsapp-button a {
        font-size: 12px;
        padding: 5px 0;
        width: 90%;
        margin: 0 auto;
    }

    .whatsapp-button a img {
        width: 14px;
    }
}

@media screen and (min-width: 601px) and (max-width: 825px) {
    .website-title {
        font-size: 26px;
        padding: 9px;
    }

    .owl-carousel .nav-button {
        height: 45px;
        width: 18px;
    }

    .owl-carousel .owl-prev {
        left: -37px;
    }

    .owl-carousel .owl-next {
        right: -37px;
    }

    .whatsapp-button a {
        font-size: 20px;
        padding: 10px 0;
        width: 90%;
        margin: 0 auto;
    }

    .whatsapp-button a img {
        width: 30px;
    }
}

/* Why Choose Us Section */
.section {
    display: inline-block;
    width: 45%;
    margin: 21px;
    box-sizing: border-box;
    text-align: center;
}

.right {
    float: right;
}

.accordion {
    background-color: white;
    color: #103c54;
    cursor: pointer;
    padding: 18px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 19px;
    transition: 0.4s;
    width: 100%;
}

#why-choose-us .active {
    background-color: white;
    color: #103c54;
}

.accordion:hover {
    background-color: #F0F0F0;
}

.accordion:after {
    content: '\002B';
    color: #103c54;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion .active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: #A5BACC;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.special-text-wcu {
    color: #103c54;
    text-align: justify;
}

.special-text-oy {
    color: #103c54;
    font-family: 'Bodoni', sans-serif;
}

.special-text {
    color: #103c54;
}

@media screen and (max-width: 600px) {
    .section {
        width: 90%;
        margin: 5px auto;
    }

    .right {
        float: none;
    }

    .accordion {
        font-size: 13px;
        padding: 7px;
    }

    .panel {
        padding: 0 10px;
    }
}

@media screen and (min-width: 601px) and (max-width: 820px) {
    .section {
        width: 100%;
        margin: 15px 0;
    }

    .right {
        float: none;
    }

    .accordion {
        font-size: 17px;
        padding: 16px;
        text-align: center;
    }

    .panel {
        padding: 0 15px;
    }
}

/* Destinations Section */
#slider {
    position: relative;
    width: 60%;
    height: 34vw;
    margin: 0px auto;
    font-family: 'Helvetica Neue', sans-serif;
    perspective: 900px;
    transform-style: preserve-3d;
}

input[type=radio] {
    position: relative;
    top: 115%;
    left: 15%;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    opacity: 0.4;
    transform: translateX(-83px);
    cursor: pointer;
}

input[type=radio]:nth-child(5) {
    margin-right: 0px;
}

input[type=radio]:checked {
    opacity: 1;
}

input[type=radio] {
    display: none;
}

#slider label,
#slider label img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: white;
    font-size: 70px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 400ms ease;
}

/* Active Slide */
#s1:checked~#slide1,
#s2:checked~#slide2,
#s3:checked~#slide3,
#s4:checked~#slide4,
#s5:checked~#slide5,
#s6:checked~#slide6,
#s7:checked~#slide7,
#s8:checked~#slide8,
#s9:checked~#slide9 {
    box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
    transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked~#slide2,
#s2:checked~#slide3,
#s3:checked~#slide4,
#s4:checked~#slide5,
#s5:checked~#slide6,
#s6:checked~#slide7,
#s7:checked~#slide8,
#s8:checked~#slide9,
#s9:checked~#slide1 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(10%, 0, -50px);
}

/* Next to Next Slide */
#s1:checked~#slide3,
#s2:checked~#slide4,
#s3:checked~#slide5,
#s4:checked~#slide6,
#s5:checked~#slide7,
#s6:checked~#slide8,
#s7:checked~#slide9,
#s8:checked~#slide1,
#s9:checked~#slide2 {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transform: translate3d(20%, 0, -100px);
}

/* Previous to Previous Slide */
#s1:checked~#slide4,
#s2:checked~#slide5,
#s3:checked~#slide6,
#s4:checked~#slide7,
#s5:checked~#slide8,
#s6:checked~#slide9,
#s7:checked~#slide1,
#s8:checked~#slide2,
#s9:checked~#slide3 {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transform: translate3d(30%, 0, -150px);
}

/* Previous Slide */
#s1:checked~#slide5,
#s2:checked~#slide6,
#s3:checked~#slide7,
#s4:checked~#slide8,
#s5:checked~#slide9,
#s6:checked~#slide1,
#s7:checked~#slide2,
#s8:checked~#slide3,
#s9:checked~#slide4 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(40%, 0, -200px);
}

/* Previous Slide */
#s1:checked~#slide6,
#s2:checked~#slide7,
#s3:checked~#slide8,
#s4:checked~#slide9,
#s5:checked~#slide1,
#s6:checked~#slide2,
#s7:checked~#slide3,
#s8:checked~#slide4,
#s9:checked~#slide5 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(-40%, 0, -200px);
}

/* Previous Slide */
#s1:checked~#slide7,
#s2:checked~#slide8,
#s3:checked~#slide9,
#s4:checked~#slide1,
#s5:checked~#slide2,
#s6:checked~#slide3,
#s7:checked~#slide4,
#s8:checked~#slide5,
#s9:checked~#slide6 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(-30%, 0, -150px);
}

/* Previous Slide */
#s1:checked~#slide8,
#s2:checked~#slide9,
#s3:checked~#slide1,
#s4:checked~#slide2,
#s5:checked~#slide3,
#s6:checked~#slide4,
#s7:checked~#slide5,
#s8:checked~#slide6,
#s9:checked~#slide7 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(-20%, 0, -100px);
}

/* Previous Slide */
#s1:checked~#slide9,
#s2:checked~#slide1,
#s3:checked~#slide2,
#s4:checked~#slide3,
#s5:checked~#slide4,
#s6:checked~#slide5,
#s7:checked~#slide6,
#s8:checked~#slide7,
#s9:checked~#slide8 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(-10%, 0, -50px);
}

/* Website Divider */
.divider {
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.line {
    border: none;
    height: 10px;
    width: auto;
    background: repeating-linear-gradient(45deg, #FAEBD7, #FAEBD7 10px, transparent 10px, transparent 20px);
    animation: wave 2s linear infinite;
    border-radius: 5px;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 150px 0;
    }
}

@media (max-width: 600px) {
    #slider {
        width: 65%;
        height: 50vw;
    }

    input[type=radio] {
        position: relative;
        top: auto;
        left: auto;
        width: 15px;
        height: 15px;
        transform: none;
    }

    #slider label {
        font-size: 40px;
    }

    .line {
        height: 8px;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    #slider {
        width: 72%;
        height: 60vw;
    }

    input[type=radio] {
        width: 16px;
        height: 16px;
    }

    #slider label {
        font-size: 50px;
    }

    .line {
        height: 9px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #slider {
        width: 70%;
        height: 60vw;
    }
}

/* Yachts Section */
#yachts {
    padding: 20px;
    position: relative;
}

.yachts-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.yacht {
    margin-right: 20px;
    flex-shrink: 0;
}

.yacht-box {
    display: flex;
    flex-direction: column;
    background-color: white;
    color: white;
    border: 2px solid #555555;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    width: 275px;
    height: 692px;

}

.yacht-details {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
}

.description {
    margin-top: 25px;
}

.description p {
    margin: 0;
    text-align: left;
}

.yacht-image {
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.yacht-image img {
    max-width: 100%;
    height: auto;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.special-text-yacht {
    color: #103c54;
    font-family: 'Bodoni', sans-serif;
    line-height: 1.7;
}

.space-bot .black-text {
    margin-bottom: 58px;
}

.black-text {
    color: black;
}

/* samsung kecil */
@media (max-width: 360px) {
    .yachts-container {
        flex-direction: column;
        overflow: visible;
    }

    .yacht {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .yacht-box {
        width: 100%;
        height: 380px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 9px;
    }

    .special-text-yacht {
        line-height: 1.4;
        font-size: 12px;
    }

    .space-bot .black-text {
        margin-bottom: 0px;
    }

    .black-text {
        font-size: 17px;
    }
}

/* iphone 13 */
@media (min-width: 361px) and (max-width: 390px) {
    .yachts-container {
        flex-direction: column;
        overflow: visible;
    }

    .yacht {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .yacht-box {
        width: 100%;
        height: 420px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 7px;
    }

    .special-text-yacht {
        line-height: 1.5;
        font-size: 13px;
    }

    .space-bot .black-text {
        margin-bottom: 0px;
    }

    .black-text {
        font-size: 18px;
    }
}

/* iphone 14 pro max */
@media (min-width: 391px) and (max-width: 430px) {
    .yachts-container {
        flex-direction: column;
        overflow: visible;
    }

    .yacht {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .yacht-box {
        width: 100%;
        height: 500px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 10px;
    }

    .special-text-yacht {
        line-height: 1.65;
        font-size: 15px;
    }

    .space-bot .black-text {
        margin-bottom: 18px;
    }

    .black-text {
        font-size: 20px;
    }
}

@media (min-width: 431px) and (max-width: 600px) {
    .yachts-container {
        flex-direction: column;
        overflow: visible;
    }

    .yacht {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .yacht-box {
        width: 100%;
        height: 475px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 10px;
    }

    .special-text-yacht {
        line-height: 1.6;
        font-size: 15px;
    }

    .space-bot .black-text {
        margin-bottom: 2px;
    }

    .black-text {
        font-size: 20px;
    }
}

/* ipad mini */
@media (min-width: 600px) and (max-width: 768px) {
    .yachts-container {
        flex-direction: row;
        overflow-x: auto;
    }

    .yacht {
        margin-right: 10px;
    }

    .yacht-box {
        width: 100%;
        height: 525px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 10px;
    }

    .special-text-yacht {
        line-height: 1.6;
        font-size: 17.5px;
    }

    .space-bot .black-text {
        margin-bottom: 15px;
    }

    .black-text {
        font-size: 25px;
    }
}

/* ipad air */
@media (min-width: 769px) and (max-width: 820px) {
    .yachts-container {
        flex-direction: row;
        overflow-x: auto;
    }

    .yacht {
        margin-right: 10px;
    }

    .yacht-box {
        width: 100%;
        height: 645px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 10px;
    }

    .special-text-yacht {
        line-height: 1.6;
        font-size: 20px;
    }

    .space-bot .black-text {
        margin-bottom: 18px;
    }

    .black-text {
        font-size: 28px;
    }
}

/* ipad pro */
@media (min-width: 821px) and (max-width: 1024px) {
    .yachts-container {
        flex-direction: row;
        overflow-x: auto;
    }

    .yacht {
        margin-right: 10px;
    }

    .yacht-box {
        width: 100%;
        height: 820px;
    }

    .yacht-details {
        padding: 10px;
    }

    .description {
        margin-top: 10px;
    }

    .yacht-image {
        padding: 15px;
    }

    .carousel-button {
        padding: 10px;
    }

    .special-text-yacht {
        line-height: 1.6;
        font-size: 27px;
    }

    .space-bot .black-text {
        margin-bottom: 22px;
    }

    .black-text {
        font-size: 34px;
    }
}

/* Package Section */
.package {
    display: flex;
    margin: 20px;
    padding: 5px;
    background-color: white;
    color: black;
    border: 2px solid #555555;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.package-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-image img {
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
}

.package-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: #283454;
    text-align: left;
    padding: 10px;
}

.package-details h2 {
    font-size: 24px;
    margin: 0;
}

.description {
    color: #283454;
    margin-bottom: 40px;
}

.package.one .description {
    margin-bottom: 140px;
}

.package.three .description {
    margin-bottom: 60px;
}

.package.four .description {
    margin-bottom: 50px;
}

.package.six .description {
    margin-bottom: 80px;
}

.package-description {
    flex: 1;
    text-align: left;
}

.book-now {
    position: static;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
}

.book-now-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.book-now-link:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

ul {
    list-style: none;
    padding: 0;
}

ul li:before {
    content: "\2022";
    color: black;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 600px) {
    .package {
        flex-direction: column;
        margin: 10px;
        padding: 10px;
    }

    .package-image {
        margin-bottom: 10px;
    }

    .package-image img {
        max-width: 100%;
        max-height: 200px;
    }

    .package-details {
        padding: 5px;
        align-items: center;
    }

    .package-details h2 {
        font-size: 20px;
    }

    .description {
        margin-bottom: 20px;
    }

    .book-now {
        margin-top: 10px;
        width: auto;
        text-align: center;
        transform: none;
    }

    .book-now-link {
        padding: 8px 16px;
    }

    ul {
        padding-left: 20px;
    }

    .package.one .description {
        margin-bottom: 0px;
    }

    .package.three .description {
        margin-bottom: 0px;
    }

    .package.four .description {
        margin-bottom: 0px;
    }

    .package.six .description {
        margin-bottom: 0px;
    }
}

@media (min-width: 601px) and (max-width: 825px) {
    .package {
        flex-direction: column;
        margin: 15px;
        padding: 10px;
    }

    .package-image {
        margin-bottom: 15px;
    }

    .package-image img {
        max-width: 100%;
        max-height: 250px;
    }

    .package-details {
        padding: 8px;
        align-items: center;
    }

    .package-details h2 {
        font-size: 22px;
    }

    .description {
        margin-bottom: 30px;
    }

    .book-now {
        margin-top: 10px;
        width: auto;
        text-align: center;
        transform: none;
    }

    .book-now-link {
        padding: 10px 18px;
    }

    ul {
        padding-left: 20px;
    }

    .package.one .description {
        margin-bottom: 0px;
    }

    .package.three .description {
        margin-bottom: 0px;
    }

    .package.four .description {
        margin-bottom: 0px;
    }

    .package.six .description {
        margin-bottom: 0px;
    }
}

@media (min-width: 826px) and (max-width: 1024px) {
    .description {
        font-size: 20px;
    }
}

/* Booking Order Section*/
.Booking-Order {
    text-align: left;
    max-width: 900px;
}

.center-button {
    text-align: center;
    margin-top: 20px;
}

.big-button {
    font-size: 24px;
    padding: 10px 300px;
    background-color: #103c54;
    color: white;
    border: none;
    cursor: pointer;
}

.form-group {
    display: block;
    margin-bottom: 10px;
    max-width: 800px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #FFFFF0;
}

.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #FFFFF0;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #FFFFF0;
}

.form-group.phone-input {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.form-group.phone-input select {
    flex: 1;
    margin-right: 10px;
    margin-left: 10px;
}

.form-group.phone-input input {
    flex: 2;
}

form {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit-review"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit-review"]:hover {
    background-color: #0056b3;
}

@media (max-width: 365px){

    .Booking-Order {
        max-width: 100%;
        padding: 10px;
    }

    .center-button {
        margin-top: 8px;
    }

    .big-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .form-group {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
        max-width: 95%;
    }

    .form-group select {
        font-size: 14px;
        max-width: 70%;
    }

    .form-group.phone-input {
        flex-direction: row;
    }

    .form-group.phone-input select {
        margin-right: 8px;
    }

    .form-group.phone-input input {
        margin-left: 0;
    }

    form {
        max-width: 100%;
        padding: 12px;
    }

    label {
        margin-top: 5px;
        text-align: left;
    }

    input[type="submit-review"] {
        font-size: 14px;
        padding: 7px 14px;
    }
    
    input::placeholder {
        font-size: 10px;
    }
}

@media (min-width: 366px) and (max-width: 395px) {
    .Booking-Order {
        max-width: 100%;
        padding: 10px;
    }

    .center-button {
        margin-top: 8px;
    }

    .big-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .form-group {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
        max-width: 95%;
    }

    .form-group select {
        font-size: 14px;
        max-width: 70%;
    }

    .form-group.phone-input {
        flex-direction: row;
    }

    .form-group.phone-input select {
        margin-right: 8px;
    }

    .form-group.phone-input input {
        margin-left: 0;
    }

    form {
        max-width: 100%;
        padding: 12px;
    }

    label {
        margin-top: 5px;
        text-align: left;
    }

    input[type="submit-review"] {
        font-size: 14px;
        padding: 7px 14px;
    }

    input::placeholder {
        font-size: 11px;
    }
}

@media (min-width: 396px) and (max-width: 435px) {
    .Booking-Order {
        max-width: 100%;
        padding: 10px;
    }

    .center-button {
        margin-top: 8px;
    }

    .big-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .form-group {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
        max-width: 95%;
    }

    .form-group select {
        font-size: 14px;
        max-width: 70%;
    }

    .form-group.phone-input {
        flex-direction: row;
    }

    .form-group.phone-input select {
        margin-right: 8px;
    }

    .form-group.phone-input input {
        margin-left: 0;
    }

    form {
        max-width: 100%;
        padding: 12px;
    }

    label {
        margin-top: 5px;
        text-align: left;
    }

    input[type="submit-review"] {
        font-size: 14px;
        padding: 7px 14px;
    }

    input::placeholder {
        font-size: 13px;
    }
}

@media (min-width: 436px) and (max-width: 600px) {
    .Booking-Order {
        max-width: 100%;
        padding: 12px;
    }

    .center-button {
        margin-top: 12px;
    }

    .big-button {
        font-size: 18px;
        padding: 10px 20px;
    }

    .form-group {
        max-width: 100%;
        margin-bottom: 15px;
        font-size: 17px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        max-width: 95%;
    }

    .form-group select {
        font-size: 16px;
        max-width: 75%;
    }

    .form-group.phone-input {
        flex-direction: row;
    }

    .form-group.phone-input select {
        margin-right: 8px;
        margin-left: 8px;
    }

    .form-group.phone-input input {
        margin-left: 0;
    }

    form {
        max-width: 95%;
        padding: 14px;
    }

    label {
        margin-top: 7px;
        text-align: left;
    }

    input[type="submit-review"] {
        font-size: 15px;
        padding: 8px 15px;
    }

    input::placeholder {
        font-size: 16px;
    }
}

@media (min-width: 601px) and (max-width: 820px) {
    .Booking-Order {
        max-width: 100%;
        padding: 15px;
    }

    .center-button {
        margin-top: 15px;
    }

    .big-button {
        font-size: 20px;
        padding: 10px 25px;
    }

    .form-group {
        max-width: 95%;
        margin-bottom: 15px;
        font-size: 21px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 17px;
        max-width: 100%;
    }

    .form-group select {
        font-size: 17px;
        max-width: 75%;
    }

    .form-group.phone-input {
        flex-direction: row;
    }

    .form-group.phone-input select {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .form-group.phone-input input {
        margin-left: 0;
    }

    form {
        max-width: 95%;
        padding: 15px;
    }

    label {
        margin-top: 8px;
        text-align: left;
    }

    input[type="submit-review"] {
        font-size: 18px;
        padding: 10px 18px;
    }

    input::placeholder {
        font-size: 16px;
    }
}

/* Footer Section*/
footer {
    background-color: #283454;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-media img {
    max-width: 40px;
    height: auto;
    vertical-align: middle;
}

.social-media a:hover {
    text-decoration: underline;
}

.cotact-us {
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    footer {
        padding: 15px;
    }

    .social-media {
        margin-bottom: 15px;
    }

    .social-media a {
        margin: 5px 10px;
    }

    .social-media img {
        max-width: 30px;
    }

    .cotact-us {
        margin-bottom: 15px;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    footer {
        padding: 18px;
    }

    .social-media {
        flex-direction: row;
        margin-bottom: 18px;
    }

    .social-media a {
        margin: 0 8px;
    }

    .social-media img {
        max-width: 35px;
    }

    .cotact-us {
        margin-bottom: 18px;
    }
}

.copyright {
    color: white;
    text-align: center;
}

.copyright a {
    color: #0d5c74;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
    color: #12809a;
}