@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary-color: #5cb85c; /* A fresh green */
    --secondary-color: #2e6c31; /* Darker green for accents */
    --background-light: #f7f9fc;
    --text-dark: #333;
    --text-light: #fff;
    --gray-light: #ccc;
    --gray-medium: #666;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}
html {
  scroll-behavior: smooth;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
    background: var(--text-light);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1543353071-873f17203f52?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--text-dark);
    color: var(--text-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: var(--secondary-color);
}

.download-button i {
    font-size: 1.5rem;
}

/* --- General Section Styling --- */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--gray-medium);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* --- Images --- */
.full-width-image {
    width: 100%;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.feature-item img.feature-image {
    width: 100%;
    margin-top: 20px;
    border-radius: var(--border-radius);
}

.cta-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.contact-grid .contact-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.privacy-image, .policy-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* --- Frush Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: #e6f2e6;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

/* --- Call to Action Section --- */
.cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
}

.download-buttons .large-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    background-color: var(--text-light);
    color: var(--primary-color);
}

.download-buttons .large-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* --- Footer --- */
footer {
    background: #222;
    color: #f4f4f4;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.footer-grid h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: var(--primary-color);
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* --- Mobile Styling --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: var(--text-light);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .card-grid, .features-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}