/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2d5016;
    --vibrant-green: #4a7c2a;
    --soft-green-light: #e8f5e9;
    --soft-green-medium: #c8e6c9;
    --soft-green-dark: #a5d6a7;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --purple-accent: #7b68ee;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, var(--soft-green-light) 0%, var(--soft-green-medium) 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background decorative elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--soft-green-dark) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--soft-green-medium) 0%, transparent 50%);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--vibrant-green);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--vibrant-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--forest-green);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-logo {
    max-width: 100%;
    width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--forest-green);
    font-weight: 600;
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    margin: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: var(--vibrant-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.7;
}

.features-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-outro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Voice Matters Section */
.voice-matters {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    margin: 4rem 0;
}

.voice-matters h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.voice-matters p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-grey);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Coming Soon Section */
.coming-soon {
    padding: 4rem 0;
    text-align: center;
}

.coming-soon h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* Footer */
footer {
    background: var(--forest-green);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-small {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Content Styles */
.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--vibrant-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-grey);
    line-height: 1.8;
}

.page-content a {
    color: var(--vibrant-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: var(--forest-green);
    text-decoration: underline;
}

/* Team Section */
.team-section {
    margin-top: 3rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: var(--vibrant-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--text-grey);
    font-style: italic;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-grey);
    line-height: 1.7;
}

/* Support Section */
.support-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--soft-green-medium);
}

.support-section h2 {
    color: var(--vibrant-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support-section p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.support-section a {
    color: var(--vibrant-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-section a:hover {
    color: var(--forest-green);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .page-content {
        padding: 2rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }
}

