body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

nav {
    background-color: #f0f0f0;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

nav a.current {
    color: #333;
    text-decoration: none;
    cursor: default;
}

.hero {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
}

.hero img {
    max-width: 100%;
    height: auto;
    animation: fadeIn 2s ease-in;
}

.tagline {
    font-size: 1.2em;
    font-style: italic;
    margin-top: 15px;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.introduction, .about, .contact, .news, .thank-you {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.introduction h1, .introduction h2, .about h1, .contact h1, .news h1, .thank-you h1 {
    color: #0066cc;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

label {
    display: block;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #005bb5;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}