
:root {
    --primary: #0d6efd;
    --dark: #111827;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: #111827;
    background: #f9fafb;
}

header {
    background: linear-gradient(135deg, #0d6efd, #6c8ff5);
    color: #fff;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero {
    padding: 3rem 0 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
}

.footer-link {
    color: #e5e7eb;
}

    .footer-link:hover {
        color: #fff;
    }


body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #6c8ff5);
    color: #fff;
    padding: 4rem 0 3rem;
}

    .hero .btn-light {
        color: #0d6efd;
    }

.section-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.badge-soft {
    background: rgba(13, 110, 253, 0.12);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.25);
    font-weight: 600;
}