.contact-container .contact-header {
    position: relative;
    height: 56vw;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.contact-container .contact-header-info {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000060;
    z-index: 1;
}

.contact-header-image {
    width: 100%;
    height: 100%;
}

.contact-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-header h1 {
    font-size: 3.13vw;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.header-info-content p {
    display: block;
    width: 60%;
    margin: 0 auto;
    font-size: 1.56vw;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: .65;
}

.contact-content {
    padding: 5vw 0;
}

.contact-content h2 {
    font-family: HarmonyOS_Sans_SC_Medium;
    font-size: 2.6vw;
    color: #015380;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 4vw;
}

.contact-content-element {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 45%;
    min-width: 300px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    display: none;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    margin-right: 10px;
}

.contact-info-content h3 {
    font-family: HarmonyOS_Sans_SC_Medium;
    font-size: 1.2vw;
    color: #000000;
    line-height: 1;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 10px;

}

.contact-info-content p {
    font-size: 0.94vw;
    color: #000000;
    line-height: 1.6;
    opacity: .65;
}

.contact-info-item:nth-child(5),
.contact-info-item:last-child {
    grid-column: span 2;
}

.contact-form {
    width: 45%;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    display: flex;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    width: 25%;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    background-color: #015380;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: #006c4a;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-container .contact-header {
        height: 100vw;
    }

    .contact-header h1 {
        font-size: 6vw;
    }

    .header-info-content p {
        width: 80%;
        font-size: 2.67vw;
    }

    .contact-content h2 {
        font-size: 5.6vw;
    }

    .contact-content-element {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin-bottom: 8vw;
    }

    .contact-info-content h3 {
        font-size: 4.2vw;
    }

    .contact-info-content p {
        font-size: 2.94vw;
    }

    .form-group {
        display: block;
    }

    .form-group label {
        width: 100%;
        margin-bottom: 20px;
    }
}