body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}

.hero {
    padding: 4rem 0;
}

.hero-image {
    max-height: 70vh;
    width: 100%;
    object-fit: contain;
}

.feature-card {
    transition: transform 0.15s ease-in-out;
}
.feature-card:hover {
    transform: translateY(-4px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-banner {
    background-color: var(--bs-primary-bg-subtle);
}

.stats-section {
    border-top: 1px solid var(--bs-border-color);
    border-bottom: 1px solid var(--bs-border-color);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.roi-card-highlight {
    border: 2px solid var(--bs-primary);
}

@media (max-width: 991.98px) {
    .hero {
        padding: 2.5rem 0;
    }
}
