  html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }
    
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }    main {
      flex: 1 0 auto;
      margin-top: 0;
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Ensure support hero section is properly positioned below header */
    .support-hero {
      margin-top: 120px; /* Ensure it's below the fixed header */
      padding: 3rem 0;
    }

    /* On mobile, adjust for smaller header */
    @media (max-width: 768px) {
      .support-hero {
        margin-top: 80px;
        padding: 2rem 0;
      }
    }

    /* Enhanced Search Results Styling */
    .search-container {
      position: relative;
    }    .search-results {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(198, 165, 124, 0.15);
      border-radius: 14px;
      box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      margin-top: 0.5rem;
      max-height: 400px;
      overflow-y: auto;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      /* Hide scrollbar for all browsers */
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* Internet Explorer 10+ */
    }

    /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
    .search-results::-webkit-scrollbar {
      display: none;
    }

    .search-results.show {
      opacity: 1;
      transform: translateY(0);
    }

    .search-results-header {
      padding: 1rem 1.25rem 0.75rem;
      border-bottom: 1px solid rgba(198, 165, 124, 0.08);
      background: linear-gradient(135deg, rgba(198, 165, 124, 0.025) 0%, rgba(255, 255, 255, 0.85) 100%);
    }

    .results-count {
      font-size: 0.875rem;
      color: var(--support-gray-600);
      font-weight: 500;
    }

    .search-results-list {
      padding: 0.5rem 0;
    }

    .search-result-item {
      display: flex;
      align-items: flex-start;
      padding: 1rem 1.25rem;
      cursor: pointer;
      transition: all 0.25s ease;
      border-bottom: 1px solid rgba(198, 165, 124, 0.04);
      position: relative;
    }

    .search-result-item:last-child {
      border-bottom: none;
    }    .search-result-item:hover {
      background: rgba(198, 165, 124, 0.06);
      transform: translateX(3px);
    }

    .search-result-item:active {
      background: rgba(198, 165, 124, 0.1);
      transform: scale(0.98);
    }

    .search-result-item.clicked {
      background: rgba(198, 165, 124, 0.15) !important;
      transform: scale(0.98) !important;
      transition: all 0.1s ease !important;
    }

    .search-result-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--support-gold) 0%, #d4b78e 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      margin-right: 1rem;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(198, 165, 124, 0.3);
    }

    .search-result-content {
      flex: 1;
      min-width: 0;
    }

    .search-result-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--support-gray-900);
      margin: 0 0 0.25rem 0;
      line-height: 1.3;
    }

    .search-result-description {
      font-size: 0.8125rem;
      color: var(--support-gray-600);
      margin: 0;
      line-height: 1.4;
    }

    .search-result-category {
      font-size: 0.75rem;
      color: var(--support-gold);
      background: rgba(198, 165, 124, 0.1);
      padding: 0.25rem 0.5rem;
      border-radius: 12px;
      display: inline-block;
      margin-top: 0.5rem;
      font-weight: 500;
    }

    .search-no-results {
      padding: 2rem 1.25rem;
      text-align: center;
      color: var(--support-gray-500);
    }

    .search-no-results i {
      font-size: 2rem;
      margin-bottom: 0.75rem;
      color: var(--support-gray-400);
    }

    .search-no-results h4 {
      margin: 0 0 0.5rem 0;
      color: var(--support-gray-700);
    }

    .search-no-results p {
      margin: 0;
      font-size: 0.875rem;
    }    /* Responsive search results */
    @media (max-width: 768px) {
      .search-results {
        max-height: 300px;
        border-radius: 12px;
      }
      
      .search-result-item {
        padding: 0.875rem 1rem;
      }
      
      .search-result-icon {
        width: 28px;
        height: 28px;
        margin-right: 0.75rem;
      }
    }    /* Category Card Article Count Styling */
    .category-meta {
      margin-top: 1rem;
    }

    .article-count {
      font-size: 0.75rem;
      color: #8B7355;
      background: linear-gradient(135deg, rgba(198, 165, 124, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
      padding: 0.375rem 0.75rem;
      border-radius: 20px;
      border: 1px solid rgba(198, 165, 124, 0.15);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.025em;
      box-shadow: 
        0 2px 8px rgba(198, 165, 124, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .article-count:before {
      content: '📋';
      font-size: 0.6875rem;
    }

    .article-count.loading {
      background: linear-gradient(135deg, rgba(198, 165, 124, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
      color: #a0a0a0;
      border-color: rgba(198, 165, 124, 0.08);
      animation: luxuryPulse 2s ease-in-out infinite;
    }

    .article-count.loading:before {
      content: '⏳';
    }

    @keyframes luxuryPulse {
      0%, 100% { 
        opacity: 1; 
        transform: scale(1);
      }
      50% { 
        opacity: 0.7; 
        transform: scale(0.98);
      }
    }

    /* Premium Category Cards Redesign */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .category-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.9) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(198, 165, 124, 0.12);
      border-radius: 20px;
      padding: 2rem;
      text-decoration: none;
      color: inherit;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: auto;
      min-height: 200px;
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(198, 165, 124, 0.05);
    }

    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(198, 165, 124, 0.4), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .category-card:hover::before {
      opacity: 1;
    }

    .category-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(198, 165, 124, 0.08);
      border-color: rgba(198, 165, 124, 0.2);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    }

    .category-card:active {
      transform: translateY(-3px) scale(1.01);
    }

    .category-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--support-gold) 0%, #d4b78e 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      margin-bottom: 1.5rem;
      box-shadow: 
        0 8px 24px rgba(198, 165, 124, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .category-card:hover .category-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 
        0 12px 32px rgba(198, 165, 124, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    }

    .category-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .category-content h3 {
      font-family: 'CASTELAR', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: #2d2d2d;
      margin: 0 0 0.75rem 0;
      line-height: 1.3;
      letter-spacing: -0.02em;
      text-decoration: none;
    }

    .category-content p {
      font-size: 0.9375rem;
      color: #666;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      flex: 1;
      text-decoration: none;
    }

    .category-arrow {
      width: 32px;
      height: 32px;
      background: rgba(198, 165, 124, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--support-gold);
      font-size: 12px;
      margin-top: auto;
      margin-left: auto;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(198, 165, 124, 0.12);
    }

    .category-card:hover .category-arrow {
      background: var(--support-gold);
      color: white;
      transform: translateX(4px) scale(1.1);
      border-color: var(--support-gold);
      box-shadow: 0 4px 12px rgba(198, 165, 124, 0.3);
    }

    /* Remove ALL underlines and text decorations */
    .category-card,
    .category-card:hover,
    .category-card:focus,
    .category-card:active,
    .category-card:visited {
      text-decoration: none !important;
    }

    .category-card h3,
    .category-card p,
    .category-card *,
    .category-card:hover h3,
    .category-card:hover p,
    .category-card:hover * {
      text-decoration: none !important;
    }

    /* Question Cards Premium Redesign */
    .questions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .question-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 252, 252, 0.88) 100%);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(198, 165, 124, 0.1);
      border-radius: 16px;
      padding: 1.75rem;
      text-decoration: none;
      color: inherit;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 1px 4px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .question-card:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      border-color: rgba(198, 165, 124, 0.15);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 254, 254, 0.92) 100%);
    }

    .question-content {
      flex: 1;
    }

    .question-content h3 {
      font-size: 1.0625rem;
      font-weight: 600;
      color: #2d2d2d;
      margin: 0 0 0.5rem 0;
      line-height: 1.4;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
    }

    .question-content p {
      font-size: 0.875rem;
      color: #666;
      margin: 0;
      line-height: 1.5;
      text-decoration: none;
    }

    .question-arrow {
      width: 28px;
      height: 28px;
      background: rgba(198, 165, 124, 0.06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--support-gold);
      font-size: 10px;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(198, 165, 124, 0.1);
    }

    .question-card:hover .question-arrow {
      background: var(--support-gold);
      color: white;
      transform: translateX(3px) scale(1.05);
      border-color: var(--support-gold);
    }
