.about-header {
    background: linear-gradient(135deg, #0c52a5, #2186eb);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #0062cc, #007bff);
    color: white;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.feature-card {
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.about-section {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}