.contacts-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1100px) {
    .contacts-section {
        flex-direction: column;
    }

    .contacts {
        flex: 1 1 100%;
    }

    .reg-button {
        position: relative;
        bottom: 0;
    }
}

.contacts {
    background-color: #fff;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: auto;
}


    .contacts p {
        margin-top: 15px;
        color: #7f8c8d;
    }

        .contacts p i {
            margin-right: 10px;
        }

        .contacts p .contact-info {
            margin-top: 10px;
            font-size: 20px;
            color: #000;
        }
