/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; /* Consistent font-family */
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fff; /* White background for contrast */
}

/* Header and Navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    font-size: 2.5rem; /* Slightly larger logo font */
    margin-bottom: 1rem;
}

header .logo img {
    height: 80px; /* Adjust the logo size */
    vertical-align: middle;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px; /* Increased spacing for nav items */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ddd; /* Subtle hover effect */
}

/* Main Section */
/* Set the maximum width for the main content */
main {
    max-width: 1000px; /* Adjust this value as needed */
    margin: 0 auto; /* Center the content horizontally */
    padding: 1rem;
}


section {
    display: none; /* Hide all sections by default */
    margin-bottom: 2rem; /* More space between sections */
}

section#home {
    display: block; /* Show only the home section */
}

/* Typography and Spacing for Content */
h1, h2, h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0; /* Increased padding for footer */
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        text-align: center;
        margin: 10px 0; /* Adjusted for mobile view */
    }

    header .logo {
        font-size: 2rem; /* Smaller logo for mobile */
    }
}
/* Existing CSS styles */

/* Contact Form Styles */
#contact-form {
    max-width: 600px; /* Restrict form width */
    margin: 0 auto; /* Center the form */
    padding: 1rem;
    background-color: #f9f9f9; /* Light background for the form */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 5px; /* Rounded corners */
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%; /* Full width inputs */
    padding: 10px; /* Adequate padding */
    margin-bottom: 15px; /* Spacing between fields */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 3px; /* Slightly rounded corners */
}

#contact-form button[type="submit"] {
    background-color: #333; /* Match the header color */
    color: #fff; /* White text */
    border: none; /* No border */
    padding: 10px 20px; /* Padding for the button */
    border-radius: 3px; /* Rounded corners for the button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

#contact-form button[type="submit"]:hover {
    background-color: #555; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    /* Adjustments for mobile view if necessary */
}

/* Add more custom styles as needed */
/* Adjust the size and color of social media icons */
.social-links a i {
    font-size: 24px; /* Adjust the size as needed */
    color: #0072b1; /* Use the desired color code */
}

/* Hover effect (optional) */
.social-links a:hover i {
    color: #1877f2; /* Change the color on hover */
}

/* Add more custom styles as needed */
/* Adjust the width of award images */
.hsj-award {
    width: 1000px; /* Set the desired width for HSJ Award */
}

.liverpool-award {
    width: 1000px; /* Set the desired width for Liverpool Award */
}

.award img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Automatically adjust the height */
}
/* Adjust the size of the logo images for smaller screens (e.g., mobile devices) */
/* Adjust the size of the logo images for smaller screens (e.g., mobile devices) */
/* Center the logo images within their container */
@media (max-width: 600px) {
    .logo {
        display: flex;
        align-items: center; /* Center vertically */
        justify-content: center; /* Center horizontally */
    }

    .logo img {
        width: 420px; /* Set the desired width for the logo on mobile */
        height: 30px; /* Set the desired height for the logo on mobile */
    }
}

/* Chat Container Styles */
#chat-container {
    max-width: 1000px; /* Adjust the maximum width as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4; /* Light background color */
    border: 1px solid #ccc;
    border-radius: 5px;
}
#chat-container h2 {
    text-align: center; /* Center the title */
    font-size: 24px; /* Adjust the font size */
    margin-bottom: 10px; /* Add some spacing below the title */
    /* Add other styles as needed */
}

/* User Input Field Styles */
#user-input {
    width: 100%; /* Adjust the input width as needed */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
}

/* Send Button Styles */
#send-button {
    padding: 10px 15px;
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

/* Chat Message Styles */
#chat-messages {
    max-height: 300px; /* Adjust the maximum height as needed */
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff; /* Message container background color */
}

/* User Message Styles */
.user {
    background-color: #007bff; /* User message background color */
    color: #fff; /* User message text color */
    text-align: right; /* Right-align user messages */
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 0;
}

/* Bot Message Styles */
.bot {
    background-color: #f4f4f4; /* Bot message background color */
    color: #333; /* Bot message text color */
    text-align: left; /* Left-align bot messages */
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 0;
}
#question-suggestions {
    margin-top: 20px;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
}

#question-suggestions p {
    font-weight: bold;
}

#question-suggestions ul {
    list-style: none;
    padding: 0;
}

#question-suggestions li {
    margin: 5px 0;
    cursor: pointer;
    color: blue;
}

#question-suggestions li:hover {
    text-decoration: underline;
}
