    :root {
      --primary: #ff6b35;
      --primary-dark: #e55a2b;
      --secondary: #e74c3c;
      --success: #27ae60;
      --warning: #f39c12;
      --gray: #7f8c8d;
      --light-bg: #f8f9fa;
      --white: #FFFFFF;
      --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--light-bg);
      color: #2c3e50;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .navbar {
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(20px);
      padding: 1rem 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      border-bottom: 2px solid var(--primary);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      margin: 0 0.5rem;
      padding: 0.5rem 1rem !important;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary) !important;
      transform: translateY(-2px);
      background: rgba(255, 107, 53, 0.1);
    }

    .btn-primary {
      background: none;
      border: none;
      border-radius: 8px;
      padding: 12px 30px;
      font-weight: 600;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .hero {
      background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.9) 0%, 
        rgba(229, 90, 43, 0.85) 100%),
        url('https://images.unsplash.com/photo-1551632811-561732d1e306?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      min-height: 80vh;
      display: flex;
      align-items: center;
      position: relative;
      color: white;
      overflow: hidden;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      max-width: 600px;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-hero {
      padding: 15px 30px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .btn-hero-primary {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(20px);
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-hero-primary:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-3px);
      color: white;
    }

    .btn-hero-secondary {
      background: white;
      color: var(--primary);
    }

    .btn-hero-secondary:hover {
      background: var(--light-bg);
      transform: translateY(-3px);
      color: var(--primary);
    }

    .stats-section {
      background: white;
      padding: 3rem 0;
      margin-top: -1px;
    }

    .stat-card {
      text-align: center;
      padding: 1.5rem 1rem;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
      line-height: 1;
    }

    .stat-label {
      color: var(--gray);
      font-weight: 600;
      font-size: 1rem;
      margin-top: 0.5rem;
    }

    .filters-section {
      background: white;
      padding: 2rem 0;
      margin-top: 0;
      position: relative;
      z-index: 10;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .filter-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .filter-tab {
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      font-size: 0.9rem;
    }

    .filter-tab.active {
      transform: scale(1.05);
      box-shadow: var(--shadow);
    }

    .filter-tab-search { 
      background: var(--secondary); 
      color: white; 
    }
    .filter-tab-found { 
      background: var(--success); 
      color: white; 
    }
    .filter-tab-deceased { 
      background: var(--gray); 
      color: white; 
    }
    .filter-tab-archive { 
      background: var(--warning); 
      color: white; 
    }

    .search-box {
      max-width: 400px;
      margin: 0 auto;
    }

    .search-input {
      border-radius: 25px;
      padding: 12px 20px;
      border: 2px solid #e0e0e0;
      font-size: 1rem;
    }

    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

    .cases-section {
      padding: 3rem 0;
      background: var(--light-bg);
    }

    .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #2c3e50;
    }

    .section-subtitle {
      text-align: center;
      color: var(--gray);
      font-size: 1.1rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .case-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .case-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .case-image {
      height: 250px;
      width: 100%;
      object-fit: cover;
      position: relative;
    }

    .case-status {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 6px 15px;
      border-radius: 20px;
      color: white;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .case-content {
      padding: 1.5rem;
    }

    .case-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 0.5rem;
    }

    .case-meta {
      color: var(--gray);
      font-weight: 500;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .case-description {
      color: #5d6d7e;
      margin-bottom: 1.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 0.9rem;
    }

    .case-details {
      background: var(--light-bg);
      padding: 0.8rem;
      border-radius: 10px;
      margin-bottom: 1.5rem;
    }

    .case-detail-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray);
      font-size: 0.85rem;
      margin-bottom: 0.3rem;
    }

    .case-actions {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .btn-case {
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.85rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
    }

    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .modal-content {
      border-radius: 15px;
      border: none;
      box-shadow: var(--shadow-hover);
    }

    .modal-header {
      border-bottom: 1px solid #e0e0e0;
      padding: 1.5rem;
    }

    .modal-body {
      padding: 1.5rem;
    }

    .footer {
      background: linear-gradient(135deg, #2c3e50, #1a252f);
      color: white;
      padding: 3rem 0 1.5rem;
    }

    .footer h5 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: white;
      font-size: 1.1rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid #34495e;
      padding-top: 1.5rem;
      margin-top: 2rem;
      text-align: center;
      color: #95a5a6;
      font-size: 0.9rem;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }

    .stagger-delay-1 { animation-delay: 0.1s; }
    .stagger-delay-2 { animation-delay: 0.2s; }
    .stagger-delay-3 { animation-delay: 0.3s; }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .stat-number {
        font-size: 2.2rem;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .btn-hero {
        justify-content: center;
        padding: 12px 25px;
      }

      .filter-tabs {
        gap: 0.3rem;
      }

      .filter-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
      }
    }