body {
    font-family: var(--font-body);
   background-color: var(--color-bg);
    color: #111827;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.5;
}

a {
    color: #1E3A8A;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hero-section {
    background: linear-gradient(to right, #1E3A8A, #2B6CB0);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.btn-primary {
    background-color: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.text-warning {
    color: #F59E0B;
}

.text-danger {
    color: #DC2626;
}

.text-success {
    color: #10B981;
}

.btn-warning {
    background-color: #F59E0B;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.btn-danger {
    background-color: #DC2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.btn-success {
    background-color: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.btn-warning:hover {
    background-color: #D97706;
}

.btn-danger:hover {
    background-color: #B91C1C;
}

.btn-success:hover {
    background-color: #059669;
}