:root {
    --primary-color: #6e8efb;
    --secondary-color: #a777e3;
    --text-color: #333;
    --light-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e6f9ec; /* light green */
    color: #222; /* dark text for contrast */
    font-family: 'SF Pro Display', Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    padding: 0 1rem;
    text-decoration: none;
    color: #333;
}

.hamburger {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 20px 60px;
    text-align: center;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.app-store-btn, .play-store-btn {
    padding: 12px 24px;
    border-radius: 25px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

/* Features Section */
.features {
    padding: 80px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f4fff8;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f4fff8;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Trust Section */
.trust {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-bg);
}

.milestone {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Links */
a {
    color: #218c5a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
