/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f4f4f9; /* Soft light blue background */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #6c7a89; /* Slate color for header */
    padding-top: 10px;
    padding-bottom: 10px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

header li {
    display: inline;
    margin: 0 15px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
    font-size: 36px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a {
    color: #23b5d3; /* Bright blue for highlighting */
    font-weight: bold;
}

header a:hover {
    color: #dbedf3; /* Lighter shade for hover */
}

/* Sticky footer styles */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    flex-shrink: 0;
}

/* Responsive styles */
@media only screen and (max-width: 600px) {
    header #branding, header nav, header nav li, .container {
        float: none;
        text-align: center;
        width: 100%;
    }

    header {
        padding: 20px 0;
    }
}

/* Typography and links */
h1, h2, h3, h4, h5, h6 {
    color: #333;
}

p, li, address {
    line-height: 1.6;
}

a {
    color: #23b5d3;
}

a:hover {
    color: #dbedf3;
}

/* Buttons and form elements */
button, input[type="submit"] {
    background-color: #23b5d3;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px 0;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #19a1c1; /* A slightly darker blue for button hover */
}

/* Add more styling as needed */

