  @charset "UTF-8";
  
  /* Cookie Banner Styles */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f3f3f3;
    backdrop-filter: blur(20px);
    border-top: 1px solid #4a5a6a;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: "Montserrat", Montserrat, Arial, sans-serif;
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cookie-text {
    flex: 1;
    color: #414c57;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cookie-text strong {
    color: #414c57;
  }

  .cookie-text a {
    color: #4a5a6a;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .cookie-text a:hover {
    color: #4a5a6a;
    opacity: 0.8;
  }

  .cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .cookie-btn-accept {
    background: linear-gradient(45deg, #4a5a6a, #4a5a6a);
    color: #FFFFFF;
    box-shadow: 0 4px 15px #4a5a6a;
  }

  .cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #4a5a6a;
  }

  .cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #414c57;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #414c57;
  }

  .cookie-btn-settings {
    background: transparent;
    color: #4a5a6a;
    border: 1px solid #4a5a6a;
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .cookie-btn-settings:hover {
    background: #4a5a6a;
  }

  /* Cookie Settings Modal */
  .cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .cookie-modal.show {
    display: flex;
  }

  .cookie-modal-content {
    background: #f3f3f3;
    border-radius: 15px;
    border: 1px solid #4a5a6a;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    font-family: "Montserrat", Montserrat, Arial, sans-serif;
  }

  .cookie-modal-header {
    margin-bottom: 25px;
  }

  .cookie-modal-title {
    font-size: 1.5rem;
    color: #4a5a6a;
    margin-bottom: 10px;
  }

  .cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .cookie-category-title {
    font-weight: 600;
    color: #414c57;
  }

  .cookie-switch {
    position: relative;
    width: 50px;
    height: 24px;
  }

  .cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
  }

  .cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
  }

  input:checked + .cookie-slider {
    background-color: #4a5a6a;
  }

  input:checked + .cookie-slider:before {
    transform: translateX(26px);
  }

  input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .cookie-category-description {
    color: #414c57;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cookie-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }

    .cookie-buttons {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cookie-btn {
      flex: 1;
      min-width: 120px;
    }

    .cookie-modal-content {
      margin: 10px;
      padding: 20px;
    }

    .cookie-category-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }


