.feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 64px;
    height: 64px;

    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: #FF5B27;
    font-size: 24px;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
} 