/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f4f7;
    margin: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden; /* To round the corners of the shadow */
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007BFF;
    color: white;
    font-size: 1.2em;
}

tr:hover {
    background-color: #f1f1f1; /* Highlight row on hover */
}

/* Button Container */
.button-container {
    text-align: center; /* Center buttons */
    margin: 20px 0;
}

.book-now {
    background-color: #28a745; /* Green background */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.book-now:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Horizontal Rule */
hr {
    border: 0;
    height: 1px;
    background-color: #ddd; /* Light gray color */
    margin: 20px 0; /* Space around the divider */
}

/* Info Container */
.info-container {
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding around the content */
    margin: 20px 0; /* Margin above and below the container */
}

.info-container h2 {
    text-align: center; /* Center the heading */
    color: #007BFF; /* Blue color for the heading */
    margin-bottom: 15px; /* Space below the heading */
    font-size: 1.8em; /* Larger font size */
}

.info-container ul {
    list-style-type: disc; /* Bulleted list */
    padding-left: 20px; /* Indentation for list items */
    line-height: 1.6; /* Increased line height for readability */
}

.info-container li {
    margin-bottom: 10px; /* Space between list items */
    font-size: 1.1em; /* Slightly larger font size for items */
    color: #333; /* Dark text color for better contrast */
}

/* Fixed Price Styles */
.fixed-price {
    color: red; /* Change text color to red */
    font-weight: bold; /* Optional: make it bold for emphasis */
}

p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.fixed-price2 {
    color: red; /* Set text color to red */
    text-align: left; /* Align text to the left */
    margin: 30px 0; /* Optional: Add some spacing around the paragraph */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2em; /* Smaller heading size for mobile */
    }

    th, td {
        padding: 10px; /* Reduce padding in table cells */
        font-size: 0.9em; /* Smaller font size for mobile */
    }

    .book-now {
        padding: 10px 20px; /* Smaller button padding */
        font-size: 1em; /* Smaller font size for buttons */
    }

    .info-container h2 {
        font-size: 1.5em; /* Adjust heading size for mobile */
    }

    .info-container li {
        font-size: 1em; /* Adjust list item size for mobile */
    }

    p {
        font-size: 1em; /* Smaller paragraph size for mobile */
    }
}

@media (max-width: 480px) {
    body {
        margin: 10px; /* Less margin on small screens */
    }

    h1 {
        font-size: 1.8em; /* Further decrease heading size */
    }

    th, td {
        font-size: 0.85em; /* Even smaller font size for small screens */
    }

    .book-now {
        width: 100%; /* Full-width button on small screens */
    }
}
