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

:root {
    --primary-green: #2d5a3d;
    --accent-green: #4a8c5f;
    --light-green: #e8f5e9;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
}

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

/* Header */
header {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 4px var(--shadow);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo .nz {
    color: #a8d5ba;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 4rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.3rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-problem {
    background: var(--white);
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem;
    box-shadow: 0 2px 8px var(--shadow);
    max-width: 900px;
}

.hero-problem h3 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.hero-problem p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Solution Grid */
.solution {
    padding: 4rem 0;
    background: var(--white);
}

.solution h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

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

.solution-item {
    padding: 2rem;
    background: var(--light-green);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px var(--shadow);
}

.solution-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.solution-item p {
    color: var(--medium-text);
    line-height: 1.6;
}

/* Timeline Section */
.what-happened {
    background: var(--light-bg);
    padding: 4rem 0;
}

.what-happened h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-green);
}

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.65rem;
    top: 0.3rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent-green);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-item .year {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--medium-text);
    line-height: 1.6;
}

/* Why Matters Section */
.why-matters {
    padding: 4rem 0;
}

.why-matters h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 8px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    margin-top: 0.5rem;
    color: var(--medium-text);
    font-size: 1.1rem;
}

.impact {
    background: var(--white);
    border: 2px solid var(--accent-green);
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.impact h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.impact ul {
    list-style: none;
}

.impact li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.impact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Support Section */
.support {
    background: var(--light-bg);
    padding: 4rem 0;
}

.support h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.support-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
}

.support-card.highlight {
    border: 3px solid var(--accent-green);
    background: var(--light-green);
}

.support-card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--primary-green);
}

.cta-button.primary {
    background: var(--primary-green);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-button.primary:hover {
    background: #234631;
}

/* Form Section */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.form-section h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-group textarea {
    resize: vertical;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--medium-text);
}

.contact-info {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    line-height: 1.8;
    color: var(--medium-text);
}

.contact-info a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.mt-2 {
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .solution h2,
    .what-happened h2,
    .why-matters h2,
    .support h2,
    .about h2 {
        font-size: 1.8rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Success Message */
.success-message {
    background: var(--light-green);
    border: 2px solid var(--accent-green);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    display: none;
}

.success-message.show {
    display: block;
}
