/* Подвал с контактами */
.footer {
    background-color: #F5F5F5;
    padding: 60px 0;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.contacts-info {
    padding-right: 20px;
}

.contacts-info h2 {
    color: rgb(107, 39, 55);
    font-family: 'Philosopher', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}

.address {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 30px;
}

.address .red-text {
    font-weight: 600;
    color: rgb(107, 39, 55);
}

.social-title, .phone-title {
    color: rgb(45, 45, 45);
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    color: rgb(107, 39, 55);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phone-number {
    color: rgb(45, 45, 45);
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 10px;
}

.contacts-map {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}