  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.4;
        }
        header {
            background: #4c9caf;
            color: white;
            text-align: center;
            padding: 0.5rem 0;
        }
        nav {
            background: #21829d;
            color: white;
            padding: 0.5rem 1rem;
            text-align: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }
        nav a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
       
        iframe {
            display: block;
            margin: 20px auto;
            border: 0px solid #ccc;
        }
       
        footer {
            background: #4c9caf;
            color: white;
            text-align: center;
            padding: 1rem 0;
            margin-top: 20px;
        }
        
        .image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .image-container img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
        }
        
        /* Basic link styling */
        a.highlight-link {
            color: #ff5733;
            font-weight: bold;
            text-decoration: none;
            position: relative;
        }

        /* Hover state */
        a.highlight-link:hover {
            color: #c70039;
            text-decoration: underline;
        }

        /* Adding indicator before link */
        a.highlight-link::after {
            content: '⇑';
            color: #ff5733;
            font-weight: normal;
            position: relative;
            margin-right: 0px;
        }
        
        .responsive-image-container {
            text-align: center;
            margin: 20px 0;
        }

        .responsive-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        }

        .language-selector {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 100;
        }

        .flag-icon {
            width: 40px;
            height: 30px;
        }

        img.alignleft {
            float: left;
            margin: 0 15px 10px 0;
        }

        .highlight {
            color: #33b414;
            font-weight: bold;
        }
        
        .responsive-logo {
            max-width: 100%;
            height: auto;
        }
        
        @media (max-width: 768px) {
            .responsive-logo {
                width: 150px;
                height: 150px;
            }
        }
        
        @media (max-width: 480px) {
            .responsive-logo {
                width: 120px;
                height: 120px;
                margin: 0 auto; /* Center on smallest screens */
            }
            li > div {
                flex-direction: column;
                text-align: center;
            }
        }