/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #6c63ff;
    border-radius: 20px;
    padding: 20px 30px;
    max-width: 600px;
    width: calc(100% - 40px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #1e2d3a;
  }
  
  .cookie-banner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cookie-btn.accept {
    background-color: #6c63ff;
    color: white;
  }
  
  .cookie-btn.accept:hover {
    background-color: #574fd6;
  }
  
  .cookie-btn.decline {
    background-color: #f0f0f0;
    color: #333;
  }
  
  .cookie-btn.decline:hover {
    background-color: #e0e0e0;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 480px) {
    .cookie-banner {
      padding: 16px 20px;
      bottom: 10px;
      border-radius: 16px;
    }
  
    .cookie-btn {
      width: 100%;
      text-align: center;
    }
  }
  