body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}
.hero-section {
    background-image: url('../assets/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 5rem 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.hero-section > * {
    position: relative;
    z-index: 1;
}
.feature-card {
    border: none;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-right: 1.5rem;
}
.step-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-right: 1.5rem;
}
.btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
}
.nav-link {
    font-weight: 500;
}
