/* assets/css/style.css */

body {
    background-color: #f4f6f9;
}

.hero {
    background: linear-gradient(135deg, #198754, #2fbf71);
    color: #fff;
}

.hero h1 {
    letter-spacing: 0.5px;
}

.card {
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-2px);
    transition: 0.2s ease-in-out;
}

.navbar .nav-link {
    font-weight: 500;
}

.navbar .nav-link.active {
    text-decoration: underline;
}

.section-title {
    margin-bottom: 1rem;
}

.text-muted {
    line-height: 1.6;
}

footer {
    border-top: 1px solid #e0e0e0;
}


