
        :root {
            --primary: #007aff;
            --secondary: #00785f;
            --dark: #2c3e50;
            --white: #ffffff;
            --light: #f4f6f7;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: sans-serif; line-height: 1.6; color: #333; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        /* Nav */
        .navigation { background: var(--white); padding: 20px 0; border-bottom: 2px solid var(--light); }
        .navigation__container { display: flex; justify-content: space-between; align-items: center; }
        .nav-link { text-decoration: none; color: var(--dark); font-weight: 500; margin-left: 20px; }
        
        /* Layout elements */
        .logobar { display: flex; gap: 15px; margin-bottom: 20px; }
        .logobar__logo img { height: 40px; }
        
        /* Hero */
        .block-home_heading { padding: 80px 0; background: var(--light); text-align: center; }
        .button { display: inline-block; padding: 12px 24px; background: var(--primary); color: white; text-decoration: none; border-radius: 4px; margin-top: 20px; }
        
        /* Grid */
        .card_grid__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
        .card_grid__imagewrapper img { width: 64px; height: 64px; }
        
        /* News */
        .news-grid__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 40px 0; }
        .news-grid__card { text-decoration: none; color: inherit; border: 1px solid #ddd; padding: 15px; display: block; }
        .news-item__image { width: 100%; height: 200px; object-fit: cover; }
        
        /* Footer */
        footer { background: var(--dark); color: white; padding: 60px 0; margin-top: 50px; }
        .footer__logo-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
        .footer__logo-grid img { height: 30px; filter: brightness(0) invert(1); }

        @media (max-width: 768px) {
            .navigation__container { flex-direction: column; }
        }
    