@font-face {
    font-family: 'Sherwood';
    src: url('../fonts/sherwood/sherwood.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #023900;
    color: #2F4F4F;
}

header {
    font-family: Sherwood, sans-serif;
    background-color: #036a0080;
    text-align: center;
    font-size: 2rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
    padding-top: 5px;
    margin: 0;
    position: relative;
    min-height: 150px;
    width: 100%;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
}

nav {
    background-color: #035c00;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
}

nav a {
    color: #FFFFFF !important;
    text-decoration: none;
    margin: 0 .7rem;
    white-space: nowrap;
}

nav a:hover {
    color: #E6F0E6;
}

.convertkit-button {
    background-color: transparent !important;
    border: none !important;
    font-size: inherit !important;
    box-shadow: none !important;
    background-image: none !important;
    border: inherit !important;
    padding: 0px 0px 0px 0px !important;
}

.section {
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
    padding: 2rem;
    max-width: 50rem;
    margin: 0 auto;
    border-left: 0.25rem solid #013d00;
    border-right: 0.25rem solid #013d00;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.section-header {
    font-family: Sherwood, sans-serif;
    text-transform: uppercase;
}

.form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

form label {
    margin-bottom: 20px;
    display: block;
}

form label input,
form label textarea {
    margin-top: 5px;
    display: block;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #036a00;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

footer {
    background-color: #036a00;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}

#cookie-consent {
    position: fixed;
    bottom: 3.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #006847;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 0.3125rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 90%;
    z-index: 1000;
}

#cookie-consent p {
    margin: 0 0 0.625rem 0;
    font-size: 0.9rem;
}

#cookie-consent a {
    color: #98FF98;
    text-decoration: underline;
}

#cookie-consent a:hover {
    color: #E6F0E6;
}

#cookie-consent button {
    background-color: #228B22;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.1875rem;
    cursor: pointer;
    margin: 0 0.3125rem;
}

#cookie-consent button:hover {
    background-color: #006400;
}