   /* Custom styles for enhanced UI */
    :root {
      --primary: #274c77;
      --primary-dark: #0284c7;
      --secondary: #6096ba;
      --accent: #f1f5f9;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: url('/theme/image/background.svg') no-repeat center center fixed;
      background-size: cover;
      background-color: #f0f3fb;
      min-height: 100vh;
      padding-top: 70px;
    }

    .h2 {
      color: var(--primary);
    }
    
    .glass-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 5px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .drop-zone {
      transition: all 0.3s ease;
      border: 2px dashed #cbd5e1;
    }
    
    .drop-zone.drag-over {
      border-color: var(--primary);
      background-color: rgba(14, 165, 233, 0.05);
      transform: scale(1.01);
    }
    
    .btn-primary {
      background: linear-gradient(to right, var(--primary), var(--primary-dark));
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(14, 165, 233, 0.3);
    }
    
    .thumbnail {
      transition: all 0.2s ease;
    }
    
    .thumbnail:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .progress-bar {
      background: linear-gradient(90deg, rgba(255,255,255,0.12) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.12) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.8s infinite;
    }
    
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    
    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .ad-container {
      background: #f8fafc;
      border-radius: 12px;
      border: 1px dashed rgb(132, 136, 139)
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .main-grid {
        grid-template-columns: 1fr;
      }
    }
    
.content-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 5px 10px -5px rgba(0, 0, 0, 0.04);
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th, table td {
  border: 1px solid #e2e8f0;
  padding: 12px 15px;
}

table tr:nth-child(even) {
  background-color: #f8fafc;
}

.content-section ol, .content-section ul {
  margin-left: 1.2rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .content-section {
    padding: 20px 15px;
  }
  
  .glass-card {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .glass-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .glass-card h3 {
    font-size: 20px;
  }
  
  .glass-card p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Grid adjustments */
  .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Feature cards */
  .bg-primary-50 {
    padding: 20px;
  }
  
  .bg-primary-50 .w-12 {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  /* Table responsiveness */
  .overflow-x-auto {
    overflow-x: auto;
    margin: 0 -15px;
    padding: 0 15px;
  }
  
  table {
    min-width: 600px;
  }
  
  table th, table td {
    padding: 10px;
    font-size: 14px;
  }
  
  /* Step-by-step guide */
  .flex-col.md\:flex-row {
    flex-direction: column;
  }
  
  .md\:w-1\/2 {
    width: 100%;
  }
  
  /* FAQ section */
  .space-y-6 > div {
    margin-bottom: 25px;
  }
  
  /* Pro tips boxes */
  .bg-primary-50.p-6.rounded-lg {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  /* White content boxes */
  .bg-white.p-5.rounded-lg.shadow-sm {
    padding: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 15px;
  }
  
  .glass-card h2 {
    font-size: 22px;
  }
  
  .glass-card h3 {
    font-size: 18px;
  }
  
  .bg-primary-50 {
    padding: 15px;
  }
  
  .bg-white.p-5.rounded-lg.shadow-sm {
    padding: 15px;
  }
  
  /* Step number circles */
  .bg-primary-500.text-white.rounded-full.w-8.h-8 {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  /* Icon size adjustments */
  .bg-primary-50 .w-12 {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  /* List items */
  .content-section li {
    font-size: 15px;
  }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .content-section {
    padding: 30px 20px;
  }
  
  .glass-card {
    padding: 25px;
  }
  
  .grid.md\:grid-cols-2 {
    gap: 25px;
  }
  
  table th, table td {
    padding: 10px 12px;
    font-size: 15px;
  }
}

/* Animation for better mobile experience */
@media (max-width: 768px) {
  .glass-card {
    transition: transform 0.3s ease;
  }
  
  .glass-card:active {
    transform: scale(0.98);
  }
  
  /* Improve touch targets */
  .bg-primary-50, .bg-white.p-5.rounded-lg.shadow-sm {
    cursor: pointer;
  }
}

/* Text readability improvements for mobile */
@media (max-width: 768px) {
  .text-slate-700 {
    line-height: 1.6;
  }
  
  .text-lg {
    font-size: 17px;
  }
}

/* Ensure images don't overflow on mobile */
.content-section img {
  max-width: 100%;
  height: auto;
}