.features-section {
    padding: 60px 0;
    background: #fffdf2; /* soft cream like screenshot */
}

.feature-box {
    background: #d41111;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box img {
    width: 60px;
    margin-bottom: 20px;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 24px;
    color: #555;
    margin: 0;
}

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