* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #0093d0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0 20px;
}
.navbar-left .logo img {
    height: 135px;
    width: auto;
    margin: 0 20px;
}
.navbar-right {
    display: flex;
    gap: 10px;
}
.navbar-right a {
    color: #f2f2f2;
    text-align: center;
    padding: 1.25em;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.navbar-right a:hover {
    background-color: #fcd34d;
    color: #45627e;
}
body {
    background-color: #ffffff;
}
.contact-title {
    text-align: center;
    font-size: 250%;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    color: #2f4b70;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
    width: 80%;
}
.form-row {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 15px;
}
.section-column1 {
    width: 45%;
    max-width: 1000px;
    background: #f9fbfc;
    padding: 25px 30px;
    border: 2px solid #d0dce9;
    border-radius: 10px;
}
.section-column2 {
    width: 45%;
    max-width: 1000px;
    background: #f9fbfc;
    padding: 25px 30px;
    border: 2px solid #d0dce9;
    border-radius: 10px;
}
label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
}
input,
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}
textarea {
    resize: vertical;
}
.button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
button {
    width: 30%;
    background-color: #1b4676;
    color: white;
    font-size: 18px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
button:hover {
    background-color: #1d3675;
}
footer {
    padding: 0;
    background-color: #0093d0;
    color: #ffffff;
}
footer .container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}
footer .container .split-1 {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
}
footer .container .split-1 a {
    padding-bottom: 5px;
}
footer .container .split-1 p {
    padding-bottom: 5px;
}
footer .split-1 img {
    max-width: 175px;
    height: auto;
}
footer .container .split-2 {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
    margin-top: 10px;
}
footer .container .split-2 h3 {
    padding-bottom: 5px;
}
footer a {
    color: #ffffff;
    text-decoration: none;
}
footer a:hover {
    color: #fcd34d;
}
footer > p {
    text-align: center;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    background-color: #0093d0;
    margin: 0;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    background-color: #0093d0;
    font-size: 0.9rem;
    margin: 0;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fcd34d;
}
.map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    max-width: 450px;
}

@media screen and (max-width: 1080px) {
    .navbar a {
        font-size: 115%;
    }
    .row-layout {
        flex-direction: column;
        text-align: center;
    }
    .row-layout:hover::before {
        width: 0 !important;
    }
    .left-img,
    .right-img,
    .text-block {
        flex: unset;
        width: 100%;
        max-width: 100%;
        padding: 10px 0;
    }
    .left-img img,
    .right-img img {
        width: 65%;
        margin: 0 auto;
        border-radius: 5px;
    }
    .text-block h1 {
        font-size: 175%;
    }
    .text-block p {
        font-size: 115%;
    }
    .row-layout:hover .text-block h1 {
        color: #1b4676;
    }
    .row-layout:hover .text-block p {
        color: black;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .section-column1,
    .section-column2 {
        width: 100%;
        max-width: 100%;
    }
    button {
        width: 50%;
    }
}
@media screen and (max-width: 750px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .navbar-right a {
        width: 100%;
        text-align: center;
        padding: 0.5em 0;
        font-size: 100%;
    }
    .logo {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .navbar-right a {
        width: 100%;
        text-align: center;
        padding: 1em 0;
        font-size: 110%;
    }
    .row-layout {
        flex-direction: column;
        text-align: center;
    }
    .left-img,
    .right-img,
    .text-block {
        flex: unset;
        width: 100%;
        max-width: 100%;
        padding: 10px 0;
    }
    .left-img img,
    .right-img img {
        width: 100%;
        margin: 0 auto;
        border-radius: 5px;
    }
    .text-block h1 {
        font-size: 175%;
    }
    .text-block p {
        font-size: 115%;
    }
    .quotes {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer .split-1,
    footer .split-2 {
        align-items: center;
    }
    footer .split-1,
    footer .split-2 h3 {
        margin-top: 0;
        margin-bottom: 0;
    }
    footer .split-1 p {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    footer .split-1 img {
        max-width: 60vw;
    }
    .map-embed {
        aspect-ratio: auto;
        height: 250px;
    }
}