.site-footer {
        background-color: #2b2b2b; /* Темный фон футера */
        color: #c7c7c7; /* Основной цвет текста */
        padding: 60px 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .footer-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;

        /* Создаем сетку из 3 колонок */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px; /* Расстояние между колонками */
    }

    .footer-column h4 {
        color: #ffffff; /* Белый цвет для заголовков */
        font-size: 1.1rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
    }

    /* Стили для списков */
    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column ul li {
        margin-bottom: 12px;
    }
    
    .footer-column ul a {
        color: #c7c7c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-column ul a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    /* Добавляем точки для списка контактов */
    .contact-list li {
        position: relative;
        padding-left: 15px;
    }
    .contact-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #777777;
    }

    /* Стили для иконок соц. сетей */
    .social-icons {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }
    .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        color: #ffffff;
        font-size: 22px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    .social-icon:hover {
        transform: scale(1.1);
    }
    
    /* Цвета для иконок как на макете */
    .social-icon.odnoklassniki { background-color: #ff9800; }
    .social-icon.telegram      { background-color: #448aff; }
    .social-icon.avito         { background-color: #55c4ff; }
    .social-icon.whatsapp      { background: linear-gradient(45deg, #ff8a65, #f06292); }

    /* Стили для SVG иконки Авито */
    .social-icon.avito svg {
        width: 24px;
        height: 24px;
        fill: #ffffff;
    }
    
    /* Кнопка "Связаться" */
    .footer-cta-button {
        display: block;
        text-align: center;
        text-decoration: none;
        color: #2a3d45;
        background: linear-gradient(180deg, #CBC3E3, #bbade2);
        padding: 12px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    .footer-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }
    
    /* Адаптивность для мобильных устройств */
    @media (max-width: 820px) {
        .footer-container {
            /* Ставим колонки друг под другом */
            grid-template-columns: 1fr;
        }
    }