        /* Общие стили */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }

        .container_info {
            width: 100%;
            background: linear-gradient(45deg,  #e1e8f0 9.49%, #e1e8f0 89.45%);

            margin: 0 0;
            gap:0px;
            padding: 1rem 1rem 0 1rem;
            border-radius: 6px;
            font-family: 'Bebas Neue', Arial, sans-serif;
            letter-spacing: 1px;
            /*box-shadow: 0px 0 10px rgba(0,0,0,0.3);*/
        }

        .container_gos {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0px;
            font-family: 'Bebas Neue', Arial, sans-serif;
            letter-spacing: 1px;
        }

        /* Стили для QR-кода */
        .qr-container {
            margin: 0px auto 10px;
            max-width: 1200px;
            width: 100%;
            box-shadow: 0px 0 10px rgba(0,0,0,0.1);
        }
        
        .qr-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Стили для баннера Госуслуг */
        .gosuslugi-banner {
            width: 100%;
            background: linear-gradient(138.4deg, #38bafe 26.49%, #2d73bc 79.45%);
            color: #fff;
            cursor: pointer;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 0 10px rgba(0,0,0,0.3);
        }
        
        /* Стили для основного контента */
    .info-row {
        display: flex;
        gap: 20px;
        margin-bottom: 0px;
    }
    
    .info-block.contacts {
        flex: 1;
        min-width: 0; /* Предотвращает переполнение */
        line-height: 1.3;
    }
    .info-block.qr-title {
        flex: 1;
        min-width: 0; /* Предотвращает переполнение */
    }
    
    .event-card.right-card {
        flex: 0 0 270px; /* Фиксированная ширина */
        margin: 0;
        height:130px;
        margin-bottom: 20px;
    }
    .event-card.qr-card {
        flex: 0 0 110px; /* Фиксированная ширина */
        margin: 0;
        height:110px;
        margin-bottom: 20px;
    }
    
    /* Адаптивность */
    @media (max-width: 1024px) {
        .event-card.right-card {
            flex: 0 0 250px;
        }
    }
    
    @media (max-width: 768px) {
        .info-row {
            flex-direction: column;
        }

        .event-card.right-card {
            flex: 1 1 auto;
            width: 100%;
        }
    .event-card.qr-card {
        flex: 0 0 110px; /* Фиксированная ширина */
        margin: 0;
        height:110px;
        margin-top:-1.3rem;
        margin-bottom: 20px;
        background-color: #fff;
    }
    }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .events-column {
            flex: 1 1 300px;
            min-width: 300px;
        }
        
        .info-column {
            flex: 2 1 500px;
        }

        .event-card {
            margin-bottom: 20px;
            max-height: 130px;
            border-radius: 8px;
            overflow: hidden;
            /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
            box-shadow: 0px 0 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            /*box-shadow: 0px 0 10px rgba(0,0,0,0.3);*/
        }
        
        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-link {
            display: block;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }
        
        .event-image {
            min-height: 130px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .event-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.7);
            padding: 3px;
            color: white;
            text-align: center;
        }
        
        .event-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .event-description {
            font-size: 12px;
            display: none;
        }
        
        .info-block {
            padding: 15px;
            background-color: #f8f9fa;
            min-height: 130px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0px 0 10px rgba(0,0,0,0.1);
        }
        .info-block-qr {
            padding: 20px;
            background-color: #f8f9fa;
            min-height: 90px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0px 0 10px rgba(0,0,0,0.1);
        }
        
        .contacts {
            margin-bottom: 20px;
            min-width:200px;
            justify-content: center;
        }
        
        .contacts p {
            font-size: 16px;
            margin-bottom: 10px;
            color: #000;
            justify-content: center;
            line-height: 1.1;
        }
        .qr-title {
            margin-bottom: 20px;
            min-width:200px;
            width:100%;
            justify-content: center;
        }

        .qr-title p {
            font-size: 21px;
            margin-bottom: 0px;
            color: #000;
            justify-content: center;
        }

        .library-info {
            font-size: 14px;
            color: #000;
            line-height: 1.3;
        }
        
        .library-info a {
            color: #2d73bc;
            text-decoration: none;
        }
        
        .library-info a:hover {
            text-decoration: underline;
        }
        
        /* Адаптивные стили */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .events-column, .info-column {
                flex: 1 1 100%;
            }
            
            .event-card {
                margin-bottom: 15px;
            }
            
            .event-image {
                height: 100px;
            }
            
            .contacts p {
                font-size: 16px;
            }
            
            .library-info {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .event-title {
                font-size: 14px;
            }
            
            .contacts p {
                font-size: 14px;
            }
        }