<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === GLOBAL STYLES === */

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-size: cover;
    height: 300%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #fff;
}

section:nth-of-type(1) textarea,
section:nth-of-type(1) [type="text"],
section:nth-of-type(1) input[type="button"],
section:nth-of-type(1) input[type="tel"],
section:nth-of-type(1) input[type="submit"] {
    border-radius: 0;
}

.icon-container {
    align-items: center;
    background-color: #1c3557;
    border-radius: 50%;
    display: inline-flex;
    flex-shrink: 0;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.icon-container svg {
    height: 30px;
    width: 30px;
}

/* === NAVBAR === */

@media only screen and (max-width: 768px) {
    .navbar {
        height: 90px;
    }
    .navbar .nav-left {
        display: none;
    }
}

.navbar {
    align-items: center;
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
    background-color: #1c3557;
}

.nav-logo {
    height: 72px;
    padding-top: 4px;
    width: 150px;
}

.nav-center {
    color: white;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    justify-content: space-between;
    text-align: center;
    text-decoration: none;
    width: 600px;
    position: relative;
}

.nav-center div {
    transition: all 0.2s;
    position: relative;
    padding: 5px;
}

.nav-center div:hover {
    filter: brightness(0.8);
}

#slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

.nav-right {
    align-items: center;
}

/* === BUTTONS === */

.button-p,
.button-outline,
.button-outline2 {
    border-radius: 999px;
    box-sizing: border-box;
    cursor: pointer;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 8px 18px;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    width: fit-content;
    word-break: break-word;
    transition: background-color 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.buttons-p .button-outline {
    margin-left: 30px;
}

.button-p {
    background: #e6601a;
    color: #ffffff;
    border: 0;
    width: 200px;
}

.button-p:hover {
    background-color: #bd5219;
}

.button-p:active,
.button-outline2:active {
    background: #1c3557 !important;
}

.button-outline2:active {
    border: 2px solid #1c3557;
}

.button-outline:active {
    background: #e1e1e1 !important;
}

.button-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: none;
    padding: 7px 18px;
    width: 200px;
}

.button-outline:hover {
    background-color: #fff;
    color: #e6601a;
}

.button-outline2 {
    background: transparent;
    border: 2px solid #e6601a;
    color: #e6601a;
    box-shadow: none;
    width: 200px;
}

.button-outline2:hover {
    background-color: #e6601a;
    color: #fff;
}

/* === SECTION 1 === */

section:nth-of-type(1) {
    width: 100%;
    padding-bottom: 80px;
    min-height: 100vh !important;
}

section:nth-of-type(1) &gt; h1 {
    font-size: 7vh;
    margin: 40px 0;
    padding: 0 10%;
    text-align: center;
    color: #1c3557;
}

section:nth-of-type(1) &gt; p {
    color: #666;
    font-size: 16px;
    text-align: center;
    padding: 0 10%;
}

.map-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

@media only screen and (max-width: 1150px) {
    section:nth-of-type(1) .map-container {
        flex-direction: column-reverse;
    }
    section:nth-of-type(1) .left,
    section:nth-of-type(1) .right {
        max-width: 100% !important;
    }
}

@media only screen and (max-width: 600px) {
    section:nth-of-type(1) .box {
        flex: 1 1 80% !important;
        margin-bottom: 4% !important;
    }
    section:nth-of-type(1) &gt; h1 {
        font-size: 3.1vh;
    }
}

section:nth-of-type(1) .left,
section:nth-of-type(1) .right {
    flex: 1;
    max-width: 50%;
    padding: 40px;
    text-align: center;
}

section:nth-of-type(1) .left {
    height: 50%;
}

section:nth-of-type(1) .right {
    padding: 40px 0;
}

section:nth-of-type(1) form {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

section:nth-of-type(1) .input-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

section:nth-of-type(1) .input-group {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

section:nth-of-type(1) .input-group:last-child {
    margin-bottom: 0;
}

section:nth-of-type(1) input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #1c3557;
    outline: none;
    padding: 5px 0;
    background-color: transparent;
    transition: border-color 0.3s;
    font-size: 18px;
}

section:nth-of-type(1) input:focus {
    border-bottom-color: #1c3557;
}

section:nth-of-type(1) input:focus + label,
section:nth-of-type(1) input:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 12px;
    color: #1c3557;
}

section:nth-of-type(1) label {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    font-size: 15px;
    color: #1c3557;
    transition: top 0.3s, font-size 0.3s, color 0.3s;
    pointer-events: none;
}

@media only screen and (max-width: 450px) {
    section:nth-of-type(1) label {
        font-size: 14px;
    }
}

section:nth-of-type(1) .right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

section:nth-of-type(1) .box {
    flex: 0 0 48%;
    box-sizing: border-box;
    margin-bottom: 2%;
}

section:nth-of-type(1) .box {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    padding: 20px;
    position: relative;
    text-align: center;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

section:nth-of-type(1) .box:hover {
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}
</pre></body></html>