.contactSection {
    position: relative;
    padding: 2.5rem 0;
    background: white;
}

.contactSection img {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    max-width: 420px;
    width: 80%;
}

.contactSection > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactContent {
    margin-left: 30%;
    padding: 3.5rem 0 6rem 0;
    z-index: 1;
}

.contactSection p {
    color: black;
    font-size: 1.6rem;
    font-weight: 900;
}

.contact-anchor {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.4rem;
    font-weight: 900;
}

.contact-anchor svg {
    width: 1.4rem;
    height: 1.4rem;
}

.anchors {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .anchors {
        margin-top: 24px;
    }

    .contact-anchor {
        font-size: 1.2rem;
    }
}

@media (max-width: 545px) {
    .contactSection img {
        left: 50%;
    }

    .contactContent {
        margin-left: 0;
    }
}
