#cookie-banner {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 100%;
      max-width: 400px;
      background: #064f4f;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,.3);
      display: none;
    font-family: 'Open Sans', arial, sans-serif;
      opacity: 0;
      transform: translateY(500px); /* start off-screen */
      transition: transform 0.6s ease, opacity 0.6s ease;
    }
    #cookie-banner.show {
      display: block;
      opacity: 1;
      transform: translateY(0); /* slide into place */
    }
    #cookie-banner h3 {
      margin: 0 0 10px;
      font-size: 24px;
      font-weight: bold;
    }
    #cookie-banner p {
      margin: 0 0 14px;
      font-size: 18px;
      line-height: 1.4;
      color: #d7f2f1;
    }
    #cookie-banner button {
      background: transparent;
      border: 2px solid #fff;
      border-radius: 20px;
      padding: 8px 18px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 14px;
      width: 100%;
    }
    #cookie-banner button:hover {
      background: #fff;
      color: #064f4f;
    }