body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Hero section and other normal CSS here */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}
.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .transition-hover:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    }

.bg-primary-soft {
    background-color: rgba(22, 135, 199, 0.1);
}
.how-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .how-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
