<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Open Sans', sans-serif;
    background: url(bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body:after{
    content:"";
    position:fixed; /* stretch a fixed position to the whole screen */
    top:0;
    height:100vh; /* fix for mobile browser address bar appearing disappearing */
    left:0;
    right:0;
    z-index:-1; /* needed to keep in the background */
    background: url(bg.jpg) center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.site-header {
    position: relative;
    height: 100vh; /* Full viewport height */
}

.site-header .contact-link {
    position:absolute;
    right:10px;
    top:10px;
    font-size:2em;
}

.contact-link:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.site-header .contact-link a {
    color: white;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    min-width: 50%;
    max-width: 80%; /* Restricts width on larger screens */
}

.logo {
    max-width: 250px;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
    margin: 10px 0 0;
}

.down-arrow {
    display: block;
    margin: 20px auto 0;
    font-size: 2em;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.down-arrow:hover {
    color: #ddd;
}

/* New section styles */
.section-dark {
    
    color: white;
}

.section-light {
    background-color: #eee;
    color: #222;
}

.section {
    min-height: calc(100vh - 30px); /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.section-inner-text {
    max-width: 70%;
    text-align: left;
}

.section h2 {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-dark h2 {
    color: white; /* Ensure the heading is white */
}

.section-overlay {
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    max-width: 80%; /* Restricts width on larger screens */
    text-align: left;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two-column layout */
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0;
}

.grid-item {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    padding: 20px;
    /*border: 2px solid #444; !* Add border around each grid item *!*/
    /*border-radius: 5px;*/
    transition: transform 0.3s, border-color 0.3s;
}

.grid-item img {
    max-width: 80px;
    margin-right: 20px; /* Space between the icon and the text */
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; /* Align text to the top */
}

.text-container h3 {
    margin: 0;
    font-size: 1.5em;
    text-align: left;
}

.text-container p {
    margin: 5px 0 0;
    font-size: 1em;
    text-align: left;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    border: 1px solid #555;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    background-color: #1e1e1e;
    color: white;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.2em;
}

.accordion-button:hover {
    background-color: #444;
}

.accordion-content {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
}

.accordion-inner-content {
    padding: 15px;
}

.accordion-content p {
    margin: 0;
    padding: 15px 0;
}

.muted {
    color: #878787;
}

.right-info {
    text-align: left;
}

.right-info ul {
    padding: 5px;
    margin: 0;
    list-style: none;
}

.right-info ul li {
    display: flex;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}

.right-info ul li &gt; a:hover {
    color: #154047;
}


.right-info ul li a {
    text-decoration: none;
    color: black;
    margin-top:auto;
    margin-bottom:auto;
    margin-left:10px;
    font-weight: 100;
}

.right-info ul li i {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;

    font-size: 25px;
}

#contact .logo {
    padding-top: 25px;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .overlay {
        max-width: 100%;
        left: 0;
        transform: translate(0, -50%);
        border-radius: 0;
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .grid-container {
        grid-template-columns: 1fr; /* Single column layout on smaller screens */
    }

    .text-container h3 {
        font-size: 1.2em;
    }

    .text-container p {
        font-size: 0.9em;
    }

    .accordion-button {
        font-size: 1em;
    }

    .accordion-content p li {
        font-size: 0.9em;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .overlay {
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
        text-align: center;
        color: white;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        padding: 20px;
        border-radius: unset;
        max-width: 100%; /* Restricts width on larger screens */
    }

    .logo {
        max-width: 70px;
        margin-bottom: 0;
    }

    h1, p {
        font-size: 1em;
        margin-bottom: 10px;
    }


    .down-arrow {
        font-size: 1em;
    }
}
</pre></body></html>