body {
    background-color: #346eeb;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
}

h1, h2, p {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: gray;
    text-decoration: underline;
}

button {
    background-color: #346eeb;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #1e50b5;
}

footer {
    background-color: #2c2f33;
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #1e1e1e;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #346eeb;
}

ul {
    list-style-type: disc;
    margin: 20px auto;
    padding: 0;
    width: 80%;
    color: white;
}

ul li {
    margin: 10px 0;
}
/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #2c2f33;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Initially hidden */
    flex-direction: column;
}

.chatbot-header {
    background-color: #346eeb;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.chatbot-messages {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    background-color: #1e1e1e;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    background-color: #2c2f33;
    border-radius: 0 0 10px 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.chatbot-input button {
    background-color: #346eeb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.chatbot-input button:hover {
    background-color: #1e50b5;
}
h1,p,