/* Mission & Vision Section */
.mission-vision {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #2e8b57;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    line-height: 1.6;
}

/* Our Goals Section */
.our-goals {
    padding: 80px 0;
}

.goals-container {
    margin-top: 50px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.goal-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.goal-number {
    background: #2e8b57;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
    font-weight: bold;
}

.goal-content h3 {
    color: #2e8b57;
    margin-bottom: 10px;
}

.goal-content p {
    color: #555;
    line-height: 1.6;
}

/* Our Programs Section */
.our-programs {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.programs-tabs {
    margin-top: 50px;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: #e0e0e0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #d0d0d0;
}

.tab-btn.active {
    background: #2e8b57;
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.program-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.program-image {
    height: 100%;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-details {
    padding: 30px;
}

.program-details h3 {
    color: #2e8b57;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.program-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.program-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.program-features i {
    color: #2e8b57;
    margin-left: 10px;
}

/* Impact Section */
.our-impact {
    padding: 80px 0;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2e8b57;
    margin-bottom: 10px;
}

.stat-label {
    color: #555;
    font-size: 1.1rem;
}

/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/src/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .program-card {
        grid-template-columns: 1fr;
    }
    
    .program-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .goal-item {
        flex-direction: column;
    }
    
    .goal-number {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}