* {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 1.6;
    font-style: normal;
    font-variation-settings: "wdth" 100, "YTLC" 500;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    background-color: rgb(1, 135, 184);
    padding: 1rem 0;
}

.header_title {
    font-weight: 500;
    font-size: 1.25rem;
    color: white;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 6rem;
    text-align: center;
}

.logo_img {
    width: 40%;
    max-width: 400px;
}

.logo_text {
    font-size: 2rem;
    font-weight: 300;
    color: rgb(1, 135, 184);
}

@media (max-width: 1000px) {
    .logo_text {
        padding: 0 1rem;
    }
}

.content {
    padding: 2rem 0;
    background-color: #F7F9FB;
}

.content_primary {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}


.content_primary_map,
.content_primary_contact {
    flex: 1 1 45%;
}

.content_primary_map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content_primary_contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;

    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: auto;
    transition: transform 0.3s ease;
}

.content_primary_contact:hover {
    transform: translateY(-5px);
}

.contact {
    font-size: 1.5rem;
    font-weight: 600;
    color: #014D70;
    border-left: 4px solid #0187B8;
    padding-left: 0.5rem;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
}

.contact_info_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
}

.contact_info_item a {
    color: #014D70;
    font-weight: 500;
}

.contact_info_item a:hover {
    color: #0187B8;
}

a{
    text-decoration: none;
}

.footer {
    background-color: rgb(1, 135, 184);
    padding: 1rem 0;
    color: white;
}
.footer_div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: 0.9rem;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer_email a{
    color: white;
}

@media (max-width: 900px) {
    .footer_div {
        flex-direction: column;
    }
}
