/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Modern font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: #2C3E50; /* Updated darker shade */
    color: white;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping */
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s; /* Smooth transition for hover effects */
}

.navbar a:hover {
    color: #BDC3C7; /* Light grey on hover */
}

#searchForm {
    display: flex;
    align-items: center;
}

#searchInput {
    padding: 0.5rem;
    border: 1px solid #ccc; /* Lighter border color */
    border-radius: 4px;
}

h2 {
    margin-top: 60px;
    text-align: center;
    font-weight: 300; /* Lighter font-weight for modern look */
}

h1 {
    margin-top: 60px;
    text-align: center;
    font-weight: 300; /* Lighter font-weight for modern look */
}

#searchForm button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #3498DB; /* Brighter blue */
    color: white;
    cursor: pointer;
    border-radius: 4px; /* Uniform border-radius */
    transition: background-color 0.3s; /* Smooth background transition */
}

#searchForm button:hover {
    background-color: #2980B9; /* Darker blue on hover */
}

/* Home Section */
#home {
    background: #ECF0F1; /* Lighter, modern background color */
    padding: 2rem 1rem; /* Adjust padding for smaller screens */
    text-align: center;
}

/* Video Testimonials */
#video-testimonials {
    background: #BDC3C7; /* Light grey background */
    padding: 2rem 0;
    text-align: center;
}

.video-testimonial {
    margin: 1rem auto;
    max-width: 800px;
}

.video-testimonial video {
    width: 100%;
    max-height: 400px;
    margin-bottom: 0.5rem;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    overflow-x: auto; /* Allow horizontal scrolling */
    display: block; /* Make table block element */
}

.pricing-table th, .pricing-table td {
    border: 1px solid #EAEDED; /* Lighter border color */
    padding: 1rem;
    text-align: left;
}

.pricing-table th {
    background-color: #D5D8DC; /* Light grey header */
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #ECF0F1; /* Very light grey for alternate rows */
}

/* Case Studies */
#case-studies {
    background: #F8F9F9; /* Very light background */
    padding: 2rem 0;
    text-align: left;
}

.case-study {
    margin: 1rem auto;
    max-width: 800px;
    padding: 1rem;
    border-bottom: 1px solid #E5E8E8; /* Lighter border color */
}

.case-study h3 {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-item {
    margin: 1rem auto;
    max-width: 800px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-top: 0.5rem;
}

/* CTA Section */
#cta {
    background: #3498DB; /* Bright blue */
    color: white;
    padding: 2rem 1rem; /* Adjust padding for smaller screens */
    text-align: center;
}

.cta-button {
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #2980B9; /* Dark blue */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1F618D; /* Even darker blue on hover */
}

/* Contact Form */
#contact {
    background: #ECF0F1; /* Consistent light background */
    padding: 2rem 1rem; /* Adjust padding for smaller screens */
    text-align: center;
}

#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

#contactForm label {
    margin-top: 1rem;
    font-weight: bold;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc; /* Consistent border color */
    border-radius: 4px;
}

#contactForm textarea {
    height: 150px;
    resize: vertical;
}

#contactForm input[type="submit"] {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #3498DB; /* Consistent button color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contactForm input[type="submit"]:hover {
    background-color: #2980B9; /* Darker on hover */
}

#bookings {
    background: #ECF0F1; /* Consistent section background */
    padding: 2rem 0;
    text-align: center;
}

.booking-table {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
    border-collapse: collapse;
    text-align: center;
}

.booking-table th,
.booking-table td {
    border: 1px solid #ccc; /* Lighter border color */
    padding: 1rem;
}

.booking-table th {
    background-color: #3498DB; /* Bright blue header */
    color: white;
    transition: background-color 0.3s; /* Smooth color change */
}

.booking-table th:hover {
    background-color: #2980B9; /* Darker blue on hover */
}

.booking-table td {
    background-color: #fff;
    transition: background-color 0.3s; /* Smooth color change */
    cursor: pointer;
}

.booking-table td:hover {
    background-color: #D6EAF8; /* Light blue on hover for available slots */
}

.booking-table tbody tr:nth-child(even) {
    background-color: #F2F3F4; /* Very light grey for alternate rows */
}

#blogs {
    background: #ffffff; /* White background */
    padding: 40px 20px; /* More padding for a spacious look */
    margin-top: 40px; /* Increased margin for separation */
}

.blog-post {
    background: #ffffff; /* White background */
    border: none; /* Remove border */
    padding: 20px; /* Increased padding */
    margin-bottom: 40px; /* Increased margin between posts */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Softer shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.blog-post:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Darker shadow on hover */
}

.blog-post h2 {
    color: #333333; /* Darker text color */
    font-size: 1.8rem; /* Larger font size */
    margin-bottom: 10px; /* Reduced margin */
}

.blog-post p {
    color: #666666; /* Darker text color */
    line-height: 1.8; /* Increased line height */
    font-size: 1rem; /* Standard font size */
    margin-bottom: 20px; /* Space between paragraphs */
}

.blog-post a {
    color: #3498DB; /* Link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold links */
    transition: color 0.3s; /* Smooth transition for hover effects */
}

.blog-post a:hover {
    color: #2980B9; /* Darker link color on hover */
}

.blog-post p {
    font-size: 1.2rem; /* Larger font size */
    margin-bottom: 10px; /* Reduced margin */
    align-items: center;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack navigation links vertically */
    }

    .pricing-table th, .pricing-table td {
        padding: 0.5rem; /* Reduce padding for smaller screens */
    }

    .cta-button {
        width: 100%; /* Full width buttons on smaller screens */
        margin: 0.5rem 0; /* Adjust margin for smaller screens */
    }
}