body {
    background-color: #cad9e5;
    margin: 0;
    padding: 20px 0;
}

.hero-image {
    width: 25%;
    display: block;
    margin: 0 auto 20px auto;
}

.lodging-listing {
    width: 75%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fdfbf2;
    border: 1px solid #e0d8c0;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.lodging-listing h2 {
    margin-top: 0;
    color: #333;
}

.subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.lodging-listing p {
    margin-bottom: 18px;
}

.content-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.text-col {
    flex: 1;
}

.feature-image {
    width: 200px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.features {
    margin: 25px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.features h3 {
    color: #007cba;
    margin-bottom: 12px;
}

.features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.features li {
    margin-bottom: 8px;
}

.lodging-listing blockquote {
    border-left: 4px solid #007cba;
    padding-left: 15px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
    font-size: 1.05em;
}

.contact-cta {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 25px;
    text-align: center;
}

.contact-cta p {
    margin-bottom: 12px;
}

.book-now-btn {
    display: inline-block;
    background: #007cba;
    color: white !important;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
    .content-row {
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: auto;
    }

    .lodging-listing {
        padding: 15px;
        margin: 10px;
    }

    .book-now-btn {
        width: 100%;
        padding: 16px;
    }
}