/* --- About Page Styling --- */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f0f7f0 0%, #ffffff 100%);
    overflow: hidden;
    text-align: center;
}

.about-hero-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    background: rgba(27, 94, 32, 0.08);
    /* faint green bg */
    padding: 8px 16px;
    border-radius: 50px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}


/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.values-list {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--primary-color);
}

.value-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}


/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #81c784;
    /* Lighter green accent */
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* Team/Story Section */
.story-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.story-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .values-list {
        flex-direction: column;
    }
}