  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: url('background-1714658_1920.jpg'); /* Hintergrundbild */
            background-size: cover;
            background-position: center;
        }

        .container-wrapper {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            width: 95%; /* Gesamtbreite des Containers */
            margin-top: 50px;
        }

        .container {
            width: 95%; /* 2/3 der Breite für den Textcontainer */
            text-align: left;
            background-color: rgba(255, 255, 255, 0.8); /* Halbtransparenter Hintergrund für Lesbarkeit */
            padding: 20px;
        }

        .flags {
            margin: 10px;
            display: flex;
            justify-content: center;
        }

        .flags img {
            width: 40px;
            height: 30px;
            margin-right: 10px;
            cursor: pointer;
        }


        /* Logos Styles */
        .logos {
            display: flex;
            flex-direction: column;
            margin-right: 20px; /* Abstand zum Textcontainer */
        }

        .logos img {
            width: 120px; /* Breite der Logos */
            opacity: 0.9; /* Transparenz der Logos */
            margin-bottom: 10px; /* Abstand zwischen den Logos */
        }

        /* Unterstützer Style */
        .supporter {
            margin-top: 20px; /* Abstand von den oberen Logos */
            text-align: center;
        }

        .supporter img {
            width: 120px;
            opacity: 0.9; /* Transparenz des Logos */
        }

        .supporter h3 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        /* Footer Styles */
        footer {
            margin-top: 30px;
            padding: 10px 0;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.8); /* Hintergrundfarbe für Lesbarkeit */
            width: 100%;
            font-size: 14px;
        }

        footer a {
            text-decoration: none;
            color: #007bff;
            margin: 0 10px;
        }

        footer a:hover {
            text-decoration: underline;
        }