section.contact {
    min-height: auto;
    padding: 0;
    background-color: #0e0e0e;
}

section.contact .section-content {
    display: flex;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
}

section.contact .logo-1 {
    margin-right: 600px;
    margin-top: 100px;
    width: 500px;
    height: 100px;
}

section.contact .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 100px;
    margin-right: 50px;
    width: 400px;
    text-align: right;
    color: white;
}

section.contact .phone {
    letter-spacing: 2px;
}

section.contact .sign {
    color: white;
}

section.contact .info img {
    width: 40px;
}

section.contact .logo-2 {
    width: 460px;
    height: 400px;
}

@media (max-width: 768px) {
    section.contact .section-content {
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
    }

    section.contact .logo-1 {
        margin: 20px 0 0 0;
        width: 80%;
        max-width: 280px;
        height: auto;
        order: 1;
    }

    section.contact .logo-1 img {
        width: 100%;
        height: auto;
    }

    section.contact .info {
        margin: 30px 0 0 0;
        width: 100%;
        max-width: 300px;
        text-align: center;
        order: 2;
    }

    section.contact .phone {
        font-size: 20px;
        letter-spacing: 1px;
    }

    section.contact .sign {
        display: inline-block;
        font-size: 18px;
        padding: 8px 16px;
        border: 1px solid white;
        border-radius: 40px;
        text-decoration: none;
    }

    section.contact .info img {
        width: 44px;
        margin-top: 5px;
    }

    section.contact .logo-2 {
        width: 70%;
        max-width: 260px;
        height: auto;
        margin-top: 20px;
        order: 3;
    }
}