html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fff;
    color: #111;
    overflow-x: hidden; /* Prevents horizontal scroll */
    width: 100%;
}

.bg-brand-green {
    background-color: #00BA63;
}

.text-brand-green {
    color: #00BA63;
}

.nav-capsule {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #f0f0f0;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Fixed the horizontal overflow logic for the step line */
.step-line-container {
    overflow: hidden; /* Clips the lines so they don't push the page width */
}

.step-line::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%; /* The line goes to the next item */
    height: 2px;
    background-color: #e5e7eb;
    z-index: 0;
    max-width: 100%; /* Add this to prevent pushing the page width */
}

.download-btn:hover {
    transform: translateY(-2px);
    transition: transform 0.2s;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

#mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Ensure images don't exceed containers */
img {
    max-width: 100%;
    height: auto;
}