/* Enhanced About Section Styles */
.value-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.value-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.mission-vision-card {
    background: rgba(37, 99, 235, 0.03);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.mv-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mv-header h4 {
    margin-bottom: 0;
    color: var(--dark-color);
}

.mission-highlights .highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.goal-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.goal-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.goal-content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.commitment-banner {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.commitment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.commitment-content {
    position: relative;
    z-index: 2;
}

.commitment-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.c-stat {
    text-align: center;
}

.c-stat h5 {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .commitment-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mv-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .goal-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
