/* General Styles */ 
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@500&display=swap');

body {
    font-family: 'Darker Grotesque', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #E9F5DB;
    padding-top: 2px;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: #2D6A4F;
    font-family: 'Georgia', serif;
}

p, li {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: #2D6A4F;
    transition: color 0.3s;
}

a:hover {
    color: #40916C;
}

section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 10px;
}

/* General Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #2D6A4F;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-sizing: border-box;
}

.navbar img {
    height: 80px;
    transition: height 0.3s;
}

/* Toggle Button */
.nav-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden by default */
    margin-top: 10px; /* Space between logo and toggle button */
    align-self: flex-start; /* Align toggle button to the left */
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #40916C;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: block; /* Show the toggle button on smaller screens */
    }

    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        width: 100%;
        background-color: #2D6A4F;
        padding: 10px 0;
    }

    .nav-links.show {
        display: flex; /* Show when toggled */
    }

    .nav-links a {
        padding: 10px 20px;
        text-align: left;
        width: 100%;
    }

    .navbar img {
        height: 50px; /* Adjust logo size for smaller screens */
    }
}
x
/* Adjusting section headings for offset */
section[id] {
    scroll-margin-top: 70px; /* Adjust this to match or exceed the navbar height */
}



/* Hero Section */
.hero-section {
    background-color: #C4DFAA;
    color: #2D6A4F;
    text-align: left;
    padding: 100px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid #2D6A4F;
}

.hero-section .hero-content {
    max-width: 500px;
}

.hero-section .hero-image {
    max-width: 600px;
    margin-left: 40px;
    height: auto;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-section .cta-button {
    background: linear-gradient(135deg, #2D6A4F, #40916C);
    color: #fff;
    padding: 18px 50px;
    font-size: 25px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    animation: glow 1.5s infinite alternate;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero-section .cta-button:hover {
    background: linear-gradient(135deg, #40916C, #2D6A4F);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* App Store Link */
.app-store-link {
    display: inline-block;
}

.dynamic-image {
    margin-top: 15px;
    width: 250px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.dynamic-image:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #C4DFAA, #E9F5DB);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #E6FFE6;
}

/* Key Features Section */
#features {
    background: linear-gradient(135deg, #C4DFAA, #E9F5DB);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#features h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #E6FFE6;
}

/* Benefits Section */
#benefits {
    background: linear-gradient(135deg, #C4DFAA, #E9F5DB);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#benefits h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefits-list li {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.benefits-list li::before {
    content: '✔';
    color: #2D6A4F;
    font-weight: bold;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #E6FFE6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #C4DFAA, #E9F5DB);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
    text-align: center;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2D6A4F;
}

.contact-section .contact-content p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-section a {
    color: #2D6A4F;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-section a:hover {
    color: #40916C;
}

/* Footer */
footer {
    background-color: #2D6A4F;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 10px;
    }

    .hero-section .hero-content, .hero-section .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-content, .features-grid, .benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .nav-links a {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    h1, h2, h3 {
        font-size: 18px;
    }

    p, li {
        font-size: 14px;
    }

    .hero-section .cta-button {
        font-size: 20px;
        padding: 15px 40px;
    }

    .dynamic-image {
        width: 200px;
    }

    footer {
        font-size: 14px;
    }
}
