.tm-feedback-why-matters {
    padding: 80px 20px;
}
.tm-why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.tm-why-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.tm-why-desc {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.tm-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    text-align: left;
}
.tm-why-point {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}
.tm-why-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.tm-why-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 1;
}
.tm-why-icon i,
.tm-why-icon svg {
    display: inline-block;
    line-height: 1;
}
.tm-why-content {
    flex: 1;
}
.tm-why-point-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.tm-why-point-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .tm-feedback-why-matters {
        padding: 60px 20px;
    }
    .tm-why-heading {
        font-size: 32px;
    }
    .tm-why-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .tm-why-grid {
        gap: 20px;
    }
    .tm-why-point {
        padding: 24px;
    }
}
