body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

header {
    width: 100%;
    background-image: url("assets/HarborsAtHaverstraw-Logo.png");
    background-size: contain;      /* show entire image */
    background-repeat: no-repeat;  /* no tiling */
    background-position: center;   /* center it */
    height: 250px;                 /* adjust this number */
}

nav {
    background: #003366;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

.main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1 {
    color: #003366;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    background: #003366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0055aa;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #003366;
    color: white;
}

.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}