<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
}
.contact-section {
  padding:20px;
  min-height:50vh !important;
  box-sizing:border-box;
  margin-top:30px;
}
section {
    /*max-height:80vh !important;*/
    
    
}
form {
    

/*    background: #f9f9f9;
*/    border-radius: 10px;
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
*/    box-sizing:border-box;
}

form div {
    margin-bottom: 15px;
    box-sizing:border-box;
}

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

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--pri-color);
    border-radius: 5px;
    font-size: 16px;
    box-sizing:border-box;
    border-radius: 2px !important;
    padding: 14px;
    font-family: var(--secondarytext);
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    button:hover {
        background: #0056b3;
    }

/* Style radio buttons */
div:nth-child(4) label {
    display: inline-block;
    margin-right: 15px;
}

input[type="radio"] {
    width: auto;
    margin-right: 5px;
}

.flex-split {
    display:flex;
    flex-direction:row;
    justify-content:center;
    max-width:960px;
    margin: 0 auto;
    font-size:12px;
}
.flex-split h2 {
    font-size:36px;
    margin:0;
}

.flex-split p {
    font-size:14px;
}
.split {
    padding: 20px;
    width: 50%;
}
.form {
    width: 50%;
}

.contact i {
    font-size:14px;
    color:var(--accent-color);
    margin-right:6px;
}

.contact a {
    color:var(--accent-color-2);
    font-size:14px;
    
}
@media (max-width:900px) {
    .contact-section {
        margin-top:0;
    }
    .flex-split {
        display: block;
        box-sizing: border-box;
    }

    .split {
        width: 100%;
        max-width:600px;
        margin:0 auto;
        padding:12px;
        box-sizing:border-box;
    }

    form {
        width: 100% !important;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.google-jargon {
    font-size: 10px !important;
    text-align: center;
}

    .google-jargon a {
        color: darkblue !important;
    }

</pre></body></html>