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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

.bg-government-primary {
    background-color: #1e40af;
}

.bg-government-secondary {
    background-color: #dc2626;
}

.text-government-primary {
    color: #1e40af;
}

.text-government-secondary {
    color: #dc2626;
}

.border-government-primary {
    border-color: #1e40af;
}

.govt-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.shadow-govt {
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.1), 0 2px 4px -1px rgba(30, 64, 175, 0.06);
}

.hover-scale {
    transition: transform 0.2s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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