        body {
            /*background-color: rgb(240, 245, 246);*/
            background-color: rgb(255, 255, 255);
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }
        /* Top navigation bar */
        .top-bar {
            width: 100%;
            background-color: #5c5c5c;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }
        .top_bar_elements {
            color: white;
            padding: 14px 20px;
            text-decoration: none;
            text-align: center;
            font-size: 20px;
            transition: background-color 0.3s, color 0.3s;
        }
        /* Moving banner */
        .ticker-wrapper {
            width: 100%;
            overflow: hidden;
            background: rgb(195, 197, 94);
            color: white;
            border-bottom: 2px solid #000;
            white-space: nowrap;
        }
        .ticker {
            display: inline-block;
            padding-left: 100%;
            animation: ticker-move 20s linear infinite;
            font-size: 25px;
        }
        .ticker-wrapper:hover .ticker {
            animation-play-state: paused;
        }
        .language-switcher {
            margin: 10px 0;
            font-size: 16px;
            text-align: center;
            color: red;
        }
        @keyframes ticker-move {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        main {
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            color: darkgreen;
            text-align: center;
            margin: 20px 0 40px;
            font-size: 50px;
            font-family: 'Trebuchet MS';
        }
        h3 {
            font-size: 50px;
        }
        .disclaimer {
            border-radius: 15px;
            background-color: #959292;
            font-size: 20px;
            color: white;
            text-align: center;
            margin-top: 10px;
        }
        .container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            width: 90%;
            max-width: 1200px;
            height: 400px;
        }

        .picture-frame {
            flex: 1;
            border: 0.5px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .picture-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .picture-frame:hover {
            flex: 2;
            z-index: 10;
            transform: scale(1.05);
        }

        .picture-frame:not(:hover) {
            flex: 0.75;
        }
        .floating-chat-circle {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #16a34a;
        color: #022c22;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        z-index: 9999;
        }
        .floating-chat-circle:hover {
        background: #22c55e;
        width: 120px;
        height: 120px;        
        }
        /* Portrait / small-screen column layout */
        @media (max-width: 768px), screen and (orientation: portrait) {
        h3 {
            font-size: 20px;
        }
            .container {
                flex-direction: column;
                height: auto;
            }
            .top_bar_elements {
                color: white;
                padding: 5px 5px;
                text-decoration: none;
                text-align: center;
                font-size: 15px;
                transition: background-color 0.3s, color 0.3s;
            }
            .ticker {
            display: inline-block;
            padding-left: 100%;
            animation: ticker-move 20s linear infinite;
            font-size: 10px;
            }
            .picture-frame {
                flex: 1 1 auto;
                height: 220px;
                margin-bottom: 0px; /* Adjust value to reduce space */
            }
            .picture-frame:hover {
                flex: 1.2 1 auto;
            }

            .picture-frame:not(:hover) {
                flex: 1 1 auto;
            }
        .banner {
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
        }

        .banner img {
            object-fit: cover;
                        
                    }

    }
