
      .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 51, 102, 0.95);
        color: #fff;
        font-size: 0.9rem;
        padding: 16px;
        z-index: 1000;
        display: none;
    }

    .cookie-content {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-content a {
        color: #0ea5e9;
        text-decoration: underline;
    }

    .cookie-content button {
        margin-top: 10px;
        background: #0ea5e9;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 16px;
        cursor: pointer;
        font-weight: 600;
    }

    .cookie-content button:hover {
        background: #0284c7;
    }
