/* About Us Page Specific Styles */

.about-header {
    background-color: var(--light-green-bg);
    padding: 4rem 0;
    text-align: center;
}

.about-header h1 {
    color: var(--primary-color);
    font-weight: 700;
}

.about-content {
    padding: 4rem 0;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #3a7c37;
    margin-bottom: 1rem;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.list-unstyled .fas {
    margin-right: 10px;
}