/* ==========================================================================
     1. Cookie Banner
     ========================================================================== */
     .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(89, 89, 89, 0.9);
        color: #FFF;
        padding: 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 2000;
        display: none;
      }
      
      .cookie-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
      }
      
      .cookie-content p {
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
      }
      
      .cookie-content a {
        color: var(--flow8-color);
        text-decoration: underline;
      }
      
      .cookie-buttons {
        display: flex;
        gap: 10px;
      }
      
      .cookie-btn {
        padding: 10px 20px;
        background-color: #FFF;
        color: #000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
      }
      
      .cookie-btn:hover {
        background-color: var(--flow8-color);
        color: #FFF;
      }
      
      /* ==========================================================================
         2. Go-to-Top Button
         ========================================================================== */
      .go-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: var(--flow8-color);
        color: #FFF;
        text-align: center;
        line-height: 50px;
        font-size: 24px;
        text-decoration: none;
        border-radius: 8%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        opacity: 0.6;
        transition: opacity 0.3s ease;
        z-index: 1000;
      }
      
      .go-to-top:hover {
        opacity: 1;
      }