<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Booking Section Styling */
#booking-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-bottom: 40px;
}

.availability-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.availability-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Center Contact Button */
.contact-availability-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Button Styling */
.custom-btn {
    background-color: #e8e8e8;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}
</pre></body></html>