* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #f3f4f6, #e2e8f0); /* Diminished background */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.logo img {
    height: 50px; /* Set your desired height for the logo */
}

.menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.landing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full height */
    text-align: center;
    padding: 0 20px; /* Padding for mobile */
}

.title {
    font-size: 48px;
    margin-bottom: 10px; /* Adjust distance from subtitle */
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px; /* More distance from features */
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px; /* Distance from button */
}

.feature {
    font-size: 18px;
    margin: 25px 0; /* Consistent spacing between features */
    display: flex;
    align-items: center;
}

.feature i {
    color: #5cb85c; /* Green color for check icon */
    margin-right: 8px;
}

.cta-button {
    background-color: transparent;
    border: 2px solid #5cb85c; /* Green border */
    color: #5cb85c;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #5cb85c; /* Green background on hover */
    color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }
    
    .nav-links {
        display: none; /* Hide nav links initially */
        flex-direction: column;
        position: absolute;
        right: 20px;
        top: 50px;
        background: white;
        border: 1px solid #ddd;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex; /* Show nav links when active */
    }

    .menu {
        display: block; /* Show menu icon on mobile */
    }

    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }
}
