.contact-header-content h1 {
    font-size: 60px;
    color: #ffffff;
    text-align: left;
    margin-left: 100px;
}

.contact-content {
    align-items: center;
    padding: 30px 20%;
    background: white;
}

.contact-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.contact-content div {
    flex: 1;
}

.contact-content h1,
.contact-content h2 {
    margin: 0;
}

.contact-content h1 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #003469;
    margin-bottom: 10px;

}

.contact-content h2 {
    font-size: 52px;
    font-weight: bold;
    color: #003469;
    margin-bottom: 10px;
    margin: 0;

}

.contact-content p {
    font-size: 22px;
    flex: 1;
    max-width: 50%;
    color: #444;
    margin: 0;
}

/* Map + Info section */
.contact-map-section {
    display: flex;
    flex-wrap: wrap;
    height: 950px;
}

.contact-map-container {
    flex: 0 0 50%;
    height: 950px;
}

.contact-info-container {
    flex: 0 0 50%;
    background-color: #f5f5f5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.contact-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    color: #00336e;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 32px;
    color: #00336e;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-phone {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-email {
    font-size: 14px;
    color: #0f67c9;
    text-decoration: none;
    margin-bottom: 20px;
}

.contact-address {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.contact-line {
    border: none;
    border-top: 2px solid #0f67c9;
    width: 80%;
    margin-top: 30px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.contact-map-container {
    position: relative;
}


@media (max-width: 1024px) {
    .contact-header-content h1 {
        font-size: 42px;
        text-align: center;
        margin-left: 0;
    }

    .contact-content {
        padding: 30px 40px;
        text-align: center;
    }

    .contact-desc {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .contact-content p {
        max-width: 100%;
        font-size: 18px;
    }

    .contact-map-section {
        flex-direction: column;
        height: auto;
    }

    .contact-map-container {
        flex: 1 1 100%;
        height: 400px;
    }

    .contact-info-container {
        flex: 1 1 100%;
        padding: 40px 30px;
        text-align: center;
    }

    .contact-line {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .contact-header {
        padding: 100px 20px;
    }

    .contact-header-content h1 {
        font-size: 32px;
    }

    .contact-content h2 {
        font-size: 32px;
    }

    .contact-content p {
        font-size: 16px;
    }

    .contact-info-container {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-phone,
    .contact-email,
    .contact-address {
        font-size: 14px;
    }

    .contact-line {
        width: 100%;
    }
}