/* About Us Section */
.about-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    color: white;
    padding: 40px 32px;
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.about-hero p {
    font-size: 15px;
    color: #c8e6c9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.mission-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #2e7d32;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 14px;
    color: #616161;
    line-height: 1.6;
}

.values-section {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.values-section h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 24px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 20px 16px;
    background: #f8fdf9;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e8f5e9;
}

.value-item:hover {
    background: #e8f5e9;
    border-color: #2e7d32;
    transform: translateY(-4px);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 13px;
    color: #616161;
    line-height: 1.5;
}

.stats-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.stats-highlight h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 24px;
    text-align: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2e7d32;
    margin-bottom: 6px;
}

.stat-text {
    font-size: 14px;
    color: #424242;
    font-weight: 600;
}

.content-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1b5e20;
}
/* Inline styles extracted from about.html */

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

.feature-item {
    padding: 24px;
    background: #f8fdf9;
    border-radius: 16px;
    border-left: 4px solid #2e7d32;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 12px;
}

.feature-item p {
    color: #616161;
    line-height: 1.7;
}