/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: Black; /* Black background for the body */
    color: White; /* White text color */
}

header {
    background-color: Red; /* Red background for the header */
    color: White; /* White text in header for contrast */
    padding: 1rem;
    text-align: center;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: White; /* White links */
    text-decoration: none;
}

nav ul li a:hover {
    color: Red; /* Red on hover */
}

section {
    padding: 20px;
    margin: 20px 0;
    background-color: White; /* White background for sections */
    color: Black; /* Black text for sections */
    border: 1px solid Red; /* Red border for sections */
}

h2 {
    color: Red; /* Red for h2 headings */
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid Red; /* Red border around input fields */
    background-color: Black; /* Black background for input fields */
    color: White; /* White text in input fields */
}

#contact-form input:focus, #contact-form textarea:focus {
    outline: none;
    border-color: Red; /* Red border on focus */
}

#chatbot {
    margin-top: 30px;
    padding: 10px;
    border: 1px solid Red; /* Red border around chatbot */
    background-color: Black; /* Black background for the chatbot */
    color: White; /* White text for chatbot */
}

#chatbox {
    height: 200px;
    border: 1px solid Red; /* Red border around chatbox */
    margin-bottom: 10px;
    overflow-y: auto;
    padding: 10px;
    background-color: Black; /* Black background for the chatbox */
    color: White; /* White text in the chatbox */
}

#qr-code img {
    width: 200px;
    height: 200px;
    border: 5px solid Red; /* Red border around QR code */
}
