/* Reset some default browser styles for better consistency */
body, h1, p, ul {
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* Style the navigation bar */
nav ul {
    list-style-type: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Style the main content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 36px;
    color: #333;
}

p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

/* Style images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Style the small image in the navigation bar */
#small-image {
    position: absolute;
    top: 10px; /* Adjust the top distance as needed */
    right: 20px; /* Adjust the right distance as needed */
    width: 50px; /* Adjust the width as needed */
    height: auto;
}


/* Style the contact form */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #8486af;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    resize: vertical; /* Allow vertical resizing of the textarea */
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

