
    До начала конференции осталось:
    
        
            00
            дней
        
        
            00
            часов
        
        
            00
            минут
        
        
            00
            секунд
        
    



    /* Стили для таймера */
    .timer-container {
        text-align: center;
        padding: 40px 0;
        background-color: #f7f7f7; /* Светлый фон, как на сайте */
    }
    .timer-title {
        font-size: 18px;
        margin-bottom: 20px;
        color: #333;
        font-weight: 400;
    }
    .timer {
        display: flex;
        justify-content: center;
        gap: 20px; /* Расстояние между блоками */
    }
    .timer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 80px;
    }
    .timer-item span {
        font-size: 48px;
        font-weight: 700;
        color: #1b5f9e; /* Синий цвет, как на сайте */
        line-height: 1;
    }
    .timer-text {
        font-size: 14px;
        color: #666;
        margin-top: 5px;
    }
    /* Адаптивность для мобильных */
    @media (max-width: 768px) {
        .timer { gap: 10px; }
        .timer-item span { font-size: 32px; }
        .timer-item { min-width: 60px; }
    }



    // Скрипт для обратного отсчета
    function updateTimer() {
        // УКАЖИТЕ ДАТУ ВАШЕГО МЕРОПРИЯТИЯ В ФОРМАТЕ 'YYYY-MM-DD'
        const eventDate = new Date('2025-04-10T10:00:00'); 
        const currentDate = new Date();
        const diff = eventDate - currentDate;

        if (diff 