:root {
            --zt-green: #2e7d32;
            --zt-lime: #8bc34a;
        }
        body { background-color: #f4f7f4; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        
        /* Хедер та навігація */
        .top-nav { background-color: #1a1c1e; padding: 10px 0; }
        .navbar-main { background: white; border-bottom: 2px solid var(--zt-green); }

        /* Hero Banner з вашим зображенням */
        .hero-banner {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                        url('/templates/Default/images/trolleybus_green.jpg') center/cover;
            padding: 120px 0;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-title { font-size: 3.5rem; fw-bold; }

        /* Картки швидкого доступу */
        .quick-access { margin-top: -60px; position: relative; z-index: 10; }
        .qa-card {
            background: white;
            border: none;
            border-radius: 12px;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-decoration: none;
            color: inherit;
        }
        .qa-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); color: var(--zt-green); }
        
        /* Секція новин */
        .section-title { border-left: 6px solid var(--zt-green); padding-left: 15px; margin-bottom: 30px; }

        .row > div[id^="news-id"], 
    .row > div:not([class*="col-"]) {
        display: contents; 
    }

    .pagination .page-item a, 
.pagination .page-item b {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 50% !important; /* Робимо круглі кнопки */
    margin: 0 2px;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    color: #2e7d32; /* Ваш зелений колір */
    background: #fff;
}

/* Активна сторінка (поточна) */
.pagination .page-item b {
    background-color: #2e7d32 !important;
    color: #fff !important;
    border-color: #2e7d32 !important;
    font-weight: bold;
}

/* Посилання при наведенні */
.pagination .page-item a:hover {
    background-color: #e8f5e9;
    border-color: #2e7d32;
    color: #1b5e20;
}

/* Стиль для кнопок Назад/Вперед */
.page-link {
    cursor: pointer;
    border: 1px solid #dee2e6;
    color: #2e7d32;
    font-weight: 500;
}

.page-link:hover {
    background-color: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

.lum-lightbox { z-index: 10000; }
    .lum-lightbox-inner img { 
        border-radius: 12px; 
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }