/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #663333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation bar */
.navbar {
    background-color: #993333;
    padding: 15px 0;
    text-align: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar a {
    color: #f0f8ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Logo splash */
.logo-splash {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
}

.logo-splash h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.logo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 40px;
}

/* Contact form card */
.contact-card {
    background-color: #f0f4ff;
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(153, 51, 51, 0.2);
}

.contact-card h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #993333;
}

.contact-card form {
    display: flex;
    flex-direction: column;
}

.contact-card label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-card input,
.contact-card textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-card button {
    padding: 10px;
    background-color: #cc4444;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-card button:hover {
    background-color: #e06666;
}

/* Footer */
footer {
    background-color: #e6f0ff;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9em;
    color: #993333;
}

.small-print {
    font-size: 0.75em;
    margin-top: 5px;
}
