body {
            font-family: 'Helvetica Neue', sans-serif;
            background-color: #ffffff;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        .logo {
            max-width: 500px;
            height: auto;
            margin-bottom: 2rem;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            width: 100%;
            max-width: 1000px;
        }

        .contact {
            flex: 1;
            min-width: 280px;
            text-align: left;
        }

        h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #222;
        }

        p {
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        a {
            color: #0073aa;
            text-decoration: none;
        }

        footer {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #888;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            max-width: 400px;
            background-color: #ffffff;
            border: 1px solid #ccc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            z-index: 9999;
            text-align: left;
            font-size: 0.9rem;
        }

        .cookie-banner strong {
            display: block;
            margin-bottom: 0.5rem;
        }

        .cookie-buttons {
            margin-top: 1rem;
            display: flex;
            justify-content: flex-start;
            gap: 0.5rem;
        }

        .cookie-buttons button {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 3px;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .accept-btn {
            background-color: #0073aa;
            color: white;
        }

        .manage-btn {
            background-color: #e6e6e6;
            color: #333;
        }

        .hidden {
            display: none !important;
        }

        .preferences-panel {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            border: 1px solid #ccc;
            padding: 2rem;
            z-index: 10000;
            max-width: 500px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .preferences-panel h3 {
            margin-bottom: 1rem;
        }

        .preferences-panel label {
            display: block;
            margin-bottom: 0.5rem;
        }

        .preferences-buttons {
            margin-top: 1rem;
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
        }