
    body {
      font-family: "Inter", sans-serif;
    }

    .result-card {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 0.75rem;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
    }

    .result-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 0.5s ease-out;
    }

    .info-box {
      background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
      border-left: 4px solid #10b981;
      padding: 1rem 1.25rem;
      border-radius: 0.5rem;
      margin: 1.5rem 0;
    }

    .warning-box {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      border-left: 4px solid #f59e0b;
      padding: 1rem 1.25rem;
      border-radius: 0.5rem;
      margin: 1.5rem 0;
    }

    .content-section {
      margin-bottom: 2rem;
    }

    .content-section h2 {
      color: #111827;
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #e5e7eb;
    }

    .highlight-text {
      background: linear-gradient(120deg, #d1fae5 0%, #a7f3d0 100%);
      padding: 0.125rem 0.375rem;
      border-radius: 0.25rem;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .content-section h2 {
        font-size: 1.25rem;
      }
    }
