body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7fb;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #ffffff;
    /* White background for the navbar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Logo Styling */
.logo {
    display: flex;
    gap: 3px;
}

.logo img {
    position: relative;
    top: 23px;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #3A3A3A;
    /* Neutral text color for the logo */
}

/* Navigation Links */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #3A3A3A;
    /* Neutral text color for default state */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #219753;
    /* Nice green theme on hover */
}

/* Get Started Button */
.btn-get-started {
    padding: 10px 20px;
    background-color: #219753;
    /* Green background */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background-color: #4CAF50;
    /* Slightly darker green for hover */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    /* Hidden by default, shown on mobile */
    cursor: pointer;
    width: 24px;
    height: 30px;
}

.close-menu {
    display: none;
}

.learn-more-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

h1,
h2,
h3 {
    font-weight: bold;
    color: #2b2b2b;
}

.intro h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    /* Minimum: 2rem, Maximum: 2.5rem */
    margin-bottom: 20px;
}

.intro p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    /* Minimum: 1rem, Maximum: 1.125rem */
    color: #555;
    line-height: 1.6;
}

.why-budgetease,
.features,
.why-you-need,
.testimonials,
.cta {
    margin-top: 40px;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    /* Minimum: 1.5rem, Maximum: 2rem */
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    /* Minimum: 1.25rem, Maximum: 1.75rem */
    margin-top: 20px;
}

ul li {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    /* Minimum: 1rem, Maximum: 1.125rem */
    margin: 15px 0;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    /* Minimum: 1rem, Maximum: 1.125rem */
    line-height: 1.7;
}

.feature-img {
    width: 100%;
    max-width: 400px;
    margin-top: 15px;
    display: block;
}

.features .feature a {
    color: #f4f7fb;
    cursor: default;
}

.testimonial {
    background-color: #fff;
    border-left: 5px solid #4CAF50;
    padding: 20px;
    margin-top: 15px;
}

.testimonial p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    /* Minimum: 1rem, Maximum: 1.125rem */
    color: #555;
}

.testimonial strong {
    font-weight: bold;
    color: #2b2b2b;
}

.cta-btn {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    /* Minimum: 1.125rem, Maximum: 1.25rem */
    background-color: #4CAF50;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    margin-top: 30px;
}

.cta-btn:hover {
    background-color: #45a049;
}

@media (max-width:768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 1000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .btn-get-started {
        width: auto;


    }

    .btn-get-started-div {
        position: relative;
        z-index: 3;
        left: 3px;
    }

    .hamburger-menu {
        display: block;

    }

    .close-menu {
        display: block;
        border: none;
        background: none;
        font-size: 34px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #333;
    }

}