
        

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #334155;
            background-color: #f8fafc;
        }

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: #64748b !important;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>');
            background-size: cover;
        }

        .hero-stats .stat-item {
            padding: 1rem;
            position: relative;
            z-index: 2;
        }

        .hero-stats h3 {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        /* Search Form */
        .search-form .form-control {
            border-radius: 50px 0 0 50px;
            border: 2px solid var(--secondary-color);
            padding: 0.875rem 1.5rem;
            font-size: 1.1rem;
        }

        .search-form .btn {
            border-radius: 0 50px 50px 0;
            border: 2px solid var(--secondary-color);
            background: var(--secondary-color);
            padding: 0.875rem 2rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .search-form .btn:hover {
            background: #d97706;
            border-color: #d97706;
        }

        /* Province Cards */
        .province-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .province-card:hover {
            transform: translateY(-8px);
        }

        .province-card .card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .province-card .card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .province-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--secondary-color), #f97316);
            border-radius: 50%;
            color: white;
        }

        /* Steps Section */
        .step-card {
            padding: 2rem 1rem;
        }

        .step-number {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 700;
            background: var(--primary-color);
        }

        /* Tables */
        .table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .table th {
            border-top: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.875rem;
            background: var(--dark-color);
            color: white;
        }

        .table tbody tr:hover {
            background-color: #f1f5f9;
        }

        /* Footer */
        .footer {
            background: var(--dark-color) !important;
            margin-top: auto;
        }

        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer a {
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--secondary-color) !important;
        }

        /* Accordion */
        .accordion-button {
            font-weight: 600;
            color: var(--dark-color);
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--primary-color);
        }

        /* Badges */
        .badge {
            font-weight: 500;
            padding: 0.5rem 0.75rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                text-align: center;
                padding: 3rem 0;
                min-height: 400px;
            }
            
            .display-4 {
                font-size: 2rem;
            }
            
            .hero-stats .col-4 {
                margin-bottom: 1rem;
            }
            
            .search-form .form-control,
            .search-form .btn {
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }

            .province-card {
                margin-bottom: 1rem;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .scroll-to-top:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
        }

        .scroll-to-top.show {
            display: flex;
        }
        
        
        /* Search Page Styles */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    min-height: 300px;
}

.search-form .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid var(--secondary-color);
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
}

.table {
    border-radius: 12px;
    overflow: hidden;
}

.table th {
    background: var(--primary-color);
    color: white;
}

.no-data-state {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.no-data-content {
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Guide Page Styles */
.guide-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.guide-content h2 {
    margin-bottom: 1.5rem;
}

.guide-content ol {
    margin-left: 20px;
}

.guide-content ol li {
    margin-bottom: 1rem;
}

.guide-content p {
    margin-bottom: 1rem;
}

