        @font-face {
            font-family: 'Ohrada';
            src: url('fonts/Ohrada.otf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'Helvetica Now';
            src: url('fonts/HelveticaNowBold.otf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }



        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f4f5f7;
        }

        /* Header */
        #g-navigation {
            background: #1a2764;
            color: white;
            position: fixed;
            width: 100%;
            height: 63px;
            display: flex;
            align-items: center;
            padding: 0 4rem 0 0;
            z-index: 1000;
        }

        /* Header container */
        #g-navigation .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        /* Navigace vpravo */
        #g-navigation nav {
            margin-left: auto;
        }


        #g-navigation .logo img {
            height: 43px;
            /* margin-top: 6px; */
        }

        #g-navigation nav ul {
            display: flex;
            list-style: none;
            gap: 5rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        #g-navigation nav ul li a {
            font-family: 'Helvetica', Arial, sans-serif;
            color: white;
            text-decoration: none;
            /* font-weight: 600; */
            font-size: 1.3rem;
            /* padding: 0.5rem 0; */
        }

        #g-navigation nav ul li a:hover {
            color: #eeaf13;
        }





        /* Footer */
        #g-footer {
            background: #031a2b;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        #g-footer a img {
            margin: 0 0.5rem;
            height: 27px;
        }

        .footer-flex {
            display: flex;
            gap: 2rem;
            width: 63%;
            margin: 5rem auto;
            align-items: flex-start;
        }

        .footer-text {
            flex: 2;
            /* levý sloupec zabere větší prostor */
            text-align: left;
        }

        .footer-logo {
            flex: 1;
            /* pravý sloupec */
            display: flex;
            justify-content: flex-start;
            /* logo vlevo uvnitř sloupce */
            align-items: flex-start;
            /* nahoře */
        }

        .footer-logo img {
            height: 50px;
            display: block;
        }





        a {
            color: #eeaf13;
            text-decoration: none;
            /* pokud nechceš podtržení */
        }

        a:hover {
            color: #cfa00f;
            /* nebo tmavší odstín pro hover */
        }


        .single-line {
            white-space: nowrap;
        }