html {
    scroll-behavior: smooth;
    }
    
    body {
    margin: 0;
    
      font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  
    background: #fff;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    
    .container {
    width: 100%;
    margin: 0 auto;
    
    @media (min-width: 640px)  { max-width: 640px; }
    @media (min-width: 768px)  { max-width: 768px; }
    @media (min-width: 1024px) { max-width: 1024px; }
    @media (min-width: 1280px) { max-width: 1280px; }
    }
    
    /* Cookie Banner Styles */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #1f2937;
      color: #f3f4f6;
      padding: 1rem;
      z-index: 100;
      font-size: 0.875rem;
      line-height: 1.5;
      box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .cookie-banner.hidden {
      display: none;
    }

    .cookie-banner-content {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .cookie-banner-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
      }
    }

    .cookie-banner-text {
      margin: 0;
      flex: 1;
    }

    .cookie-banner-link {
      color: #60a5fa;
      text-decoration: underline;
      margin-left: 0.25rem;
    }

    .cookie-banner-link:hover {
      color: #93c5fd;
    }

    .cookie-banner-btn {
      background: #ffffff;
      color: #1f2937;
      border: none;
      padding: 0.5rem 1.5rem;
      border-radius: 0.375rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .cookie-banner-btn:hover {
      background: #e5e7eb;
    }

    .feature-table {
    width: 100%;
    border-collapse: collapse;
    
    th, td {
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
      overflow-wrap: break-word;
    }
  
    th {
      background: #f9fafb;
      font-weight: 600;
      color: #111827;
    }
  
    td { color: #374151; }
  
    @media (max-width: 640px) {
      th, td {
        padding: 6px 8px;
        font-size: 0.8rem;
      }
    }
  }
