div.cookies-bar .buttons {
    flex: 1;
    text-align: right;
}
        .cookies-bar {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #002c9b;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            z-index: 1000;
            border-radius: 15px 15px 0px 0px;
        }

        .cookies-bar button {
            margin-left: 10px;
            padding: 10px 20px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
        }

        #acceptBtn {
            background-color: white;
            color: #002c9b;
        }

        #learnMoreBtn {
            background-color: #6575a8;
            color: white;
        }

        @media screen and (max-width: 600px) {
            .cookies-bar {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookies-bar .buttons {
                margin-top: 10px;
            }
        }
        /* Cookie Modal Styles */
        #cookie-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        #cookie-modal {
            background: #0a2a6c;
            color: #fff;
            border-radius: 15px 15px 0px 0px;
            width: 70%;
            max-width: 95vw;
            padding: 36px 32px 32px 32px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            position: relative;
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 32px 0;
        }
        #cookie-modal .modal-logo {
            position: absolute;
            top: 32px;
            left: 32px;
            height: 36px;
        }
        #cookie-modal .close-btn {
            position: absolute;
            top: 28px;
            right: 28px;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            z-index: 2;
            display: none;
        }
        .cookie-accordion {
            margin-top: 48px;
        }
        .cookie-accordion-section {
            background: #0f318c;
            border-radius: 10px;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: none;
        }
        .cookie-accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-weight: bold;
            font-size: 1.08em;
            cursor: pointer;
            background: #1441b8;
            border: none;
            outline: none;
            color: #fff;
            transition: background 0.2s;
        }
        .cookie-accordion-header.open {
            background: #1e4bb8;
        }
        .cookie-accordion-arrow {
            margin-left: 16px;
            font-size: 1.2em;
            transition: transform 0.2s;
        }
        .cookie-accordion-header.open .cookie-accordion-arrow {
            transform: rotate(90deg);
        }
        .cookie-accordion-content {
            background: #173a8a;
            color: #cfd8e3;
            font-size: 0.97em;
            padding: 18px 20px 18px 20px;
            display: none;
        }
        .cookie-accordion-content.open {
            display: block;
        }
        .cookie-switch {
            margin-left: 18px;
            display: flex;
            align-items: center;
        }
        .switch {
            position: relative;
            display: inline-block;
            width: 38px;
            height: 22px;
        }
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #2246a3;
            border-radius: 22px;
            transition: .4s;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 3px;
            bottom: 3px;
            background-color: #fff;
            border-radius: 50%;
            transition: .4s;
        }
        .switch input:checked + .slider {
            background-color: #0a2a6c;
        }
        .switch input:checked + .slider:before {
            transform: translateX(16px);
        }
        .switch input:disabled + .slider {
            background-color: #1e4bb8;
            opacity: 0.7;
        }
        .cookie-modal-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 38px;
            gap: 18px;
        }
        .cookie-modal-actions button {
            flex: 1 1 0;
            padding: 12px 0;
            border-radius: 24px;
            border: none;
            font-size: 1.08em;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        #cookie-modal-confirm {
            background: #fff;
            color: #0a2a6c;
            margin-right: 10px;
            border: 2px solid #1441b8;
        }
        #cookie-modal-confirm:hover {
            background: #e0e7ff;
        }
        #cookie-modal-accept {
            background: #ffffff;
            color: #0a2a6c;
            border: 2px solid #1441b8;
        }
        #cookie-modal-accept:hover {
            background: #0a2a6c;
            color: #fff;
        }
        @media (max-width: 600px) {
            #cookie-modal {
                padding: 16px 4px 12px 4px;
                width: 98vw;
            }
            .cookie-modal-actions {
                flex-direction: column;
                gap: 10px;
            }
        }
        div#cookie-banner {
    display: flex;
    flex-direction: row;
    
            padding: 1rem 2rem;
}
.cookies-desc {
    flex: 2;
}