/* ============================================
   СТИЛИ ПОДВАЛА САЙТА
   ============================================ */

.site-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 40px 0 0 0;
    margin-top: 50px;
}

/* Колонки подвала */
.footer-columns {
    width: 100%;
    display: table;
    table-layout: fixed;
}
.footer-col {
    display: table-cell;
    vertical-align: top;
    padding: 0 20px;
    width: 25%;
}

/* Логотип в подвале */
.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Заголовки колонок */
.footer-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a7d2a;
}

/* Контакты в подвале */
.footer-contact-item {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-contact-item a {
    color: #cccccc;
    text-decoration: none;
}
.footer-contact-item a:hover {
    color: #4caf50;
}
.footer-icon {
    margin-right: 5px;
}

/* Меню подвала */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 8px;
}
.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}
.footer-menu a:hover {
    color: #4caf50;
}

/* Соцсети подвала */
.footer-social {
    margin-bottom: 15px;
}
.footer-social-link {
    display: inline-block;
    padding: 5px 15px;
    background-color: #444444;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}
.footer-social-link:hover {
    background-color: #2a7d2a;
}

/* Низ подвала */
.footer-bottom {
    border-top: 1px solid #444444;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
}