body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 40px; /* Added top padding for fixed nav */
    text-align: center;
    background-color: #f9f9f9;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 0;
    z-index: 1000;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
nav li {
    display: inline-block;
    margin: 0 15px;
}
nav a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
nav a:hover {
    color: #d9534f;
}
nav a.active {
    color: #d9534f;
    border-bottom: 2px solid #d9534f;
}

/* Sections */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
section:last-of-type {
    border-bottom: none;
}

header {
    margin-bottom: 40px;
}
.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
}
h1 {
    font-size: 1.5em;
    font-weight: normal;
    color: #555;
    margin-bottom: 20px;
}
p {
    margin-bottom: 20px;
}

.mission {
    margin: 40px 0;
    text-align: left;
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.mission h2, .mission h3 {
    text-align: center;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #222;
}
.mission h3 {
    font-size: 1.1em;
    color: #d9534f;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.mission ul {
    list-style-type: none;
    padding: 0;
}
.mission li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
.mission li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #888;
}

.extra-content {
    margin: 40px 0;
    text-align: center;
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.extra-content p {
    margin-bottom: 10px;
}
.extra-content a {
    color: #d9534f;
    font-weight: bold;
    text-decoration: none;
}
.extra-content a:hover {
    text-decoration: underline;
}

/* Forms */
form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}
button, .btn {
    display: inline-block;
    background-color: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
}
button:hover, .btn:hover {
    background-color: #333;
}

.notice {
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
}
.notice strong {
    color: #d9534f;
    display: block;
    margin-bottom: 10px;
}
footer {
    margin-top: 40px;
    font-size: 0.8em;
    color: #888;
    text-align: center;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: left;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

@media (max-width: 600px) {
    body {
        padding: 100px 20px 20px; /* Adjust for mobile nav height */
    }
    .mission {
        padding: 20px;
    }
}

.loader-wrapper {
    display: none;
    height: 80vh;
    padding-top: 200px;
    justify-content: center;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.captcha-wrap img {
    border: 1px solid #ccc;
    height: 40px;
}
