:root {
    --rs-primary: #198754;
    /* Hijau Medis */
    --rs-secondary: #f8f9fa;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
}

.hero-section {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.7) 0%, rgba(16, 72, 45, 0.7) 100%), url('https://rsud.brebeskab.go.id/wp-content/uploads/2023/11/RSU01564-2048x1245.jpg') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    min-height: 30vh;
    display: flex;
}

.hero-content {
    flex: 1;
}

.quick-link-card {
    transition: transform 0.2s;
    border: none;
    background: var(--rs-secondary);
    text-align: center;
    padding: 20px;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    background: #e9ecef;
}

.stat-card {
    border-left: 4px solid var(--rs-primary);
    padding: 20px;
    margin-bottom: 20px;
}

.alur-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 20px;
}

.alur-card .bi {
    font-size: 2rem;
    color: var(--rs-primary);
    margin-bottom: 10px;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--rs-primary);
    color: white;
    border-radius: 50%;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.dropzone {
    border: 2px dashed #198754 !important;
    border-radius: 8px;
    background: #f8f9fa !important;
}