 /* Cookie-Bar Styling */
      .cookie-container {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        background: #2f3640;
        color: #f5f6fa;
        padding: 15px 30px;
        box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
        transition: bottom 0.4s ease;
        z-index: 1000;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
      }
      
      .cookie-container.active {
        bottom: 0;
      }
      
      .cookie-text {
        flex: 1;
        min-width: 300px;
        margin-right: 20px;
      }
      
      .cookie-text a {
        color: #e84118;
        text-decoration: underline;
      }
      
      .cookie-buttons {
        display: flex;
        gap: 10px;
      }
      
      .cookie-btn {
        border: 0;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      
      .cookie-accept {
        background: #e84118;
        color: #f5f6fa;
      }
      
      .cookie-accept:hover {
        background: #c23616;
      }
      
      .cookie-decline {
    background: transparent;
    color: #f5f6fa;
    border: 1px solid #f5f6fa;
  }
  .cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
  }
      
      /* Responsive Design für Cookie-Bar */
      @media (max-width: 768px) {
        .cookie-container {
          flex-direction: column;
          text-align: center;
        }
        
        .cookie-text {
          margin-right: 0;
          margin-bottom: 15px;
        }
      }