
.feature-card, .value-card {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover, .value-card:hover {
    transform: translateY(-5px);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card i {
    margin-right: 0.5rem;
}

.about-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
}
