 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

    /* Font & Reset */
    .home-container { font-family: 'Inter', sans-serif; }
    h2, h4 { font-family: 'Lora', serif; }

    /* Hero Section */
    .hero-section { background: #ffffff; padding: 100px 0; border: none; }
    
    /* Stat Cards */
    .stat-card { 
        background: #ffffff; border-radius: 12px; padding: 30px 20px; 
        text-align: center; border: 1px solid #e2e8f0;
        transition: all 0.3s ease; height: 100%; box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    .stat-card:hover { transform: translateY(-8px); box-shadow: 0 12px 20px rgba(0,0,0,0.08); border-color: #c5a880; }
    .stat-number { font-size: 2.5rem; font-weight: 800; color: #0f2042; display: block; line-height: 1; }
    .stat-label { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: 12px; display: block; }
    .stat-card i { font-size: 1.5rem; margin-bottom: 15px; color: #c5a880; }

    /* Section Styling */
    .bg-light-gray { background-color: #f8fafc; padding: 80px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
    .bg-white-section { background-color: #ffffff; padding: 80px 0; }

    /* Tombol Cari */
    .btn-search-huge { 
        padding: 16px 40px; font-size: 1.1rem; border-radius: 50px; 
        font-weight: 600; background: #0f2042; color: #fff !important;
        transition: all 0.3s ease; display: inline-block; text-decoration: none !important;
        box-shadow: 0 4px 15px rgba(15, 32, 66, 0.3);
    }
    .btn-search-huge:hover { background: #c5a880; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4); }