#container-img {
    width: 100vw;
    margin-top: 50px;
}

.contact-section {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), var(--dark-blue), rgba(255, 255, 255, 0.34));
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    margin-bottom: 40px;
}
#top-svg{
    position: absolute;
}

.contact-header h2 {
    font-size: 24px;
    color: #ffffff;
}

.contact-header img {
    width: 160px;
    height: auto;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.call-desc h2{
    font-size: 28px;
    font-weight: bold;
    line-height: 1.9;
}
.call-desc{
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-top-left-radius: 90px;
    background: linear-gradient(135deg , rgba(95, 150, 175, 0.32), rgba(0, 123, 140, 0.38), rgba(106, 194, 241, 0.33));
    box-shadow: 0 1px 30px rgba(5, 42, 96, 0.58);
}


@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        min-height: 143px;
    }
    .call-desc{
        max-width: 92%;
        padding: 20px;
    }
    .call-desc h3{
        font-size: 19px;
    }
    .row {
        flex-direction: column;
    }
    .contact-header {
        background: linear-gradient(135deg, var(--dark-blue), #62a8ff, #085ab7);
    }
    .contact-header h2{
        color: black;
    }
}