#container-img {
    width: 100vw;
    margin-top: 150px;
}

.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), rgba(0, 185, 157, 0.2), 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: #333;
}

.contact-header img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.boxe {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(0, 185, 157, 0.2), rgba(255, 255, 255, 0.34));
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.boxe img {
    max-width: 100%;
    height: auto;
}

.boxe h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
}

@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        min-height: 143px;
    }

    .row {
        flex-direction: column;
    }
}