body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F6F1EB;
    color: #4E5D5B;
    line-height: 1.6;
    font-weight: 300;
}

.container {
    position: relative;
    padding-bottom: 5rem;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.back-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #4E5D5B;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background-color: rgba(246, 241, 235, 0.8);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: rgba(246, 241, 235, 1);
}

.back-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.image-scroll {
    display: flex;
    width: 500%; /* Adjust based on number of images */
    height: 100%;
}

.image-scroll img {
    width: 20%; /* Each image takes 1/5 of the container */
    height: 100%;
    object-fit: cover;
    display: inline-block;
    scroll-snap-align: start;
}

.content {
    padding: 2rem 2rem 8rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: #F6F1EB;
    margin-top: -2rem;
    border-radius: 10px 10px 0 0;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4E5D5B;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #81D8D0;
}

p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.details {
    text-align: left;
    margin-bottom: 2rem;
}

.details p {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.8;
}

.feather {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.75rem;
    color: #81D8D0;
}

.details strong {
    color: #4E5D5B;
    font-weight: 600;
    min-width: 100px;
}

.about-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #81D8D0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dropdown {
    margin-top: 1rem;
}

.dropdown-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    text-align: left;
    cursor: pointer;
    margin-bottom: 0.5rem;
    position: relative;
    transition: background-color 0.3s ease;
}

.dropdown-btn:hover, .dropdown-btn.active {
    background-color: #f0f0f0;
}

.arrow {
    float: right;
}

.dropdown-content {
    display: none;
    text-align: left;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: -0.5rem;
    z-index: 1200;
    position: relative;
}

.dropdown-content ul {
    list-style-type: none;
    padding-left: 0;
}

.dropdown-content ul li {
    margin-bottom: 0.5rem;
}

.free-cancellation {
    margin-bottom: 2rem;
}

.free-cancellation strong {
    color: #4E5D5B;
    font-weight: 600;
}

.book-now {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.book-now:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero-image {
        height: 50vh;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 2rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .details p {
        font-size: 1.1rem;
    }

    .back-button {
        font-size: 1.2rem;
    }

    .feather {
        width: 1.8rem;
        height: 1.8rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem 1.5rem 5rem 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .about-title {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .details p {
        font-size: 0.85rem;
    }

    .book-now {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .back-button {
        font-size: 0.9rem;
    }

    .feather {
        width: 1.2rem;
        height: 1.2rem;
    }
}

.price-container {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F6F1EB;
    padding: 1rem;
    border-top: 1px solid #ccc;
    text-align: center;
    z-index: 1000;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.price-container strong {
    color: #4E5D5B;
    font-weight: 600;
    margin-right: 1rem;
}

.price-container .book-now {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #81D8D0;
    color: #4E5D5B;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.price-container .book-now:hover {
    background-color: #B8EBD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-container .original-price {
    text-decoration: line-through;
    color: #4E5D5B;
    font-weight: 400;
    margin-right: 0.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.carousel-indicators .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-indicators .dot.active {
    background-color: #81D8D0;
    transform: scale(1.3);
}