<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.page-wrapper {
    /* Grow to fill space between header and footer */
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Optional: Give footer some spacing and styling */
footer {
    background-color: #f0f0f0;
    font-size: 0.9em;
    padding: 1em;
    text-align: center;
}

header {
    align-items: center;
    background: white;
    border-bottom: 2px solid #F57C00;
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    position: relative;
}

header img {
    height: 100px;
}

.contact-us {
    color: #F57C00;
    font-weight: bold;
    position: absolute;
    right: 20px;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
}

.contact-us:hover {
    color: #000;
}

nav {
    background: #F57C00;
    padding: 16px 0;
    text-align: center;
}

nav a {
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0 30px;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: #000;
}

.hero {
    background: #F57C00;
    color: white;
    padding: 30px 15px;
    text-align: center;
}

.hero h1 {
    font-size: 1.5em;
    margin: 0;
    font-weight: normal;
    margin: auto;
    max-width: 500px;
}

.section {
    margin: 0 auto;
    max-width: 800px;
    padding: 40px 20px;
}

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

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    border: 1px solid #ccc;
    font-family: 'Roboto Slab', serif;
    font-size: 1em;
    padding: 10px;
    width: 95%;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-submit {
    background: #F57C00;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 20px;
}

.form-submit:hover {
    background: #000;
    color: #F57C00;
}

.note {
    color: #333;
    font-size: 1.05em;
    font-style: italic;
    margin-top: 30px;
}

footer {
    background: #000;
    color: white;
    font-size: 0.85em;
    padding: 15px;
    text-align: center;
}

footer a {
    color: #F57C00;
    text-decoration: none;
}

body {
    background: white;
    color: #111;
    font-family: 'Roboto Slab', serif;
    line-height: 1.5;
    margin: 0;
}

.section h2 {
    color: #F57C00;
    font-size: 1.3em;
    margin-bottom: 15px;
    margin-top: 0;
}

.section.orange {
    background: #FFF3E0;
}

.section.white {
    background: white;
}

.team-member {
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
}

.team-member img {
    border-radius: 8px;
    height: 150px;
    margin-right: 20px;
    object-fit: cover;
    width: 150px;
}

.section ul {
    list-style: square;
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}

nav a.active {
    color: #000;
}

.confirmation-message {
    background-color: #e7f9ed;
    border-radius: 5px;
    border: 1px solid #a4d4b4;
    color: #265f3d;
    font-size: 1.1em;
    margin-top: 20px;
    padding: 1em;
}

.confirmation-message.error {
    background-color: #fbeaea;
    border-color: #e09a9a;
    color: #a33;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.logo-img {
    height: 120px !important;
    width: auto;
    object-fit: contain;
}
.logo-img-sml {
    height: 90px !important;
    width: auto;
    object-fit: contain;
}
h2.with-logo {
    display: flex;
    align-items: center;
    gap: 12px; /* spacing between image and text */
}

h2.with-logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}
.img{
    width: 100%;
    height: auto;
}
.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.d-flex{
    display: flex;
}
.d-option {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap; /* Allow text to wrap if necessary */
}

.d-option input[type="checkbox"] {
    margin-right: 5px;
    width: 15px;
}

/* Prevent text overflow and ensure it's within the available width */
.d-option div {
    max-width: 500px; /* Set a max width to prevent overflow */
    white-space: nowrap; /* Prevent the text from breaking onto the next line within the same container */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis (...) if text overflows */
}
.justify-content-center{
    justify-content: center;
}
</pre></body></html>