@import url('./base.css');
/* mission.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fafafa;
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

.main-content {
    min-height: calc(100vh - 82px);
}

.hero-section {
    background: linear-gradient(135deg, #6B7B5A 0%, #8B9A7A 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .mission-statement {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 8px 32px rgba(107, 123, 90, 0.1);
            border: 2px solid rgba(107, 123, 90, 0.1);
            text-align: center;
        }

        .mission-statement h2 {
            color: #6B7B5A;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .mission-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #444;
            max-width: 1000px;
            margin: 0 auto;
            font-weight: 500;
        }

        .values-section {
            margin: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #6B7B5A;
            margin-bottom: 3rem;
            font-weight: 700;
        }

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

        .value-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            text-align: center;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(107, 123, 90, 0.15);
            border-color: #6B7B5A;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6B7B5A, #8B9A7A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .value-title {
            font-size: 1.4rem;
            color: #6B7B5A;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .value-description {
            color: #666;
            line-height: 1.6;
        }

        .what-we-do {
            background: linear-gradient(135deg, #6B7B5A 0%, #8B9A7A 100%);
            color: white;
            padding: 4rem 0;
            margin: 5rem 0;
            border-radius: 20px;
        }

        .what-we-do-content {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .what-we-do h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .what-we-do p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .story-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(107, 123, 90, 0.1);
    border: 2px solid rgba(107, 123, 90, 0.1);
    margin: 5rem 0;
}

.story-section h2 {
    font-size: 2.5rem;
    color: #6B7B5A;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
}

.story-text p {
    margin-bottom: 1.5rem;
}

        .quote-section {
            background: #f8f9f7;
            border-radius: 16px;
            padding: 3rem;
            margin: 4rem 0;
            text-align: center;
            border-left: 5px solid #6B7B5A;
        }

        .quote-text {
            font-size: 1.3rem;
            font-style: italic;
            color: #444;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .quote-author {
            color: #6B7B5A;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .mission-statement {
                padding: 2rem;
                margin: 2rem 0;
            }

            .mission-statement h2 {
                font-size: 1.8rem;
            }

            .mission-text {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

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

            .what-we-do {
                padding: 3rem 0;
                margin: 3rem 0;
            }

            .what-we-do h2 {
                font-size: 2rem;
            }

            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .impact-number {
                font-size: 2.5rem;
            }

            .cta-section {
                padding: 2rem;
            }

            .cta-title {
                font-size: 1.8rem;
            }
        }