/* style.css */

/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    background-color: #005f73;
    color: white;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

article {
    margin-bottom: 20px;
}

article h3 {
    color: #005f73;
}

/* Search Form */
form {
    display: flex;
    margin-bottom: 20px;
}

input[type="text"], button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #005f73;
    color: white;
    cursor: pointer;
}

/* Contact Support */
a[href^="mailto:"] {
    color: #005f73;
    text-decoration: none;
}

a[href^="mailto:"]:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}
