:root {
    --black: #000;
    --white: #fff;
    --gray: #1a1a1a;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--gray);
}

.hero-section {
    background: linear-gradient(135deg, var(--light), var(--white));
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.card {
    position: relative;
    border-radius: 12px !important;
}

.card-hover {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-box i {
    color: var(--white);
    font-size: 1.5rem;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    transition: background 0.3s;
    border-radius: 20px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .card-hover:hover {
        transform: none;
    }
}

html {
    scroll-behavior: smooth;
}