.card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .search-container {
            background-color: #f8f9fa;
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        .gallery-item {
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        .gallery-item:hover {
            transform: translateY(-5px);

        }

        .tariff-row td div {


        }
        .no-results {
            display: none;
            text-align: center;
            padding: 3rem;
        }
        .bg-image {
            background-image: url('/images/images.jpeg');
            background-size: cover;

        }
        /* Стили для блока со статичным фоном */
        .static-bg-section {
            background-image: url('/images/bg.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 100px 0;
            position: relative;
        }

        .static-bg-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .static-bg-content {
            position: relative;
            z-index: 1;
            color: white;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #0d6efd;
        }