body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f0e1;
    color: #333;
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

header {
    background-color: #DAA520;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 15px;
}

.logo-container {
}

.logo-container img {
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    vertical-align: middle;
}

header h1 {
    margin: 0;
}

nav {
    width: 100%;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 5px 0;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

section {
    margin-bottom: 50px;
}

h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

#hero h2 {
    margin-top: 0;
}

h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

ul {
    list-style-position: inside;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 0;
}

li {
    text-align: left;
    margin-bottom: 5px;
}

.tonawanda-harbor-image {
    margin-top: 20px;
    display: block;
}

.tonawanda-harbor-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tonawanda-harbor-image .image-caption {
}

.tonawanda-harbor-image .image-attribution {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

#contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form h2 {
    margin-bottom: 20px;
    margin-top: 0;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: left;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
}

#contact-form button {
    padding: 10px 20px;
    background-color: #800020;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #66001A;
}

footer {
    background-color: #DAA520;;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer .live-support-link {
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    margin-bottom: 50px;
    padding: 0 15px;
    line-height: 1.2;
    display: block;
}