body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f5; /* Light gray background */
}

/* Accommodation Section */
.accommodation {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff; /* White background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 1200px; /* Limit maximum width */
    margin: auto; /* Center the section */
}

h1 {
    color: black; /* #27ae60 Main heading color */
    margin-bottom: 20px;
}

.accommodation-list {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 30px; /* Space between accommodation items */
    margin: 20px 0; /* Margin around the accommodation list */
}

.accommodation-item {
    background: #f9f9f9; /* Light background for items */
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Card shadow */
    width: calc(25% - 30px); /* Responsive width */
    text-align: left; /* Left align text */
    transition: transform 0.3s, box-shadow 0.3s; /* Transition effects */
}

.accommodation-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.accommodation-image {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Cover the area without distorting the image */
    border-top-left-radius: 10px; /* Round top corners */
    border-top-right-radius: 10px; /* Round top corners */
}

.price {
    font-size: 1.2em; /* Larger font size for price */
    color: #28a745; /* Green color for price */
}

.book-now-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 15px;
    background-color: #007bff; /* Blue button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.book-now-button:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
}

.accommodation-info {
    margin-top: 40px;
    padding: 20px;
    background: #e6f9e6; /* Light green background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Shadow for emphasis */
}

.accommodation-info h2 {
    color: #2c3e50; /* Darker heading color */
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .accommodation-item {
        width: calc(33.33% - 30px); /* 3 columns on medium screens */
    }
}

@media (max-width: 800px) {
    .accommodation-item {
        width: calc(50% - 30px); /* 2 columns on smaller screens */
    }
}

@media (max-width: 600px) {
    .accommodation-item {
        width: 100%; /* Single column on extra small screens */
    }
}