@media (min-width: 992px) {
    .shipping-item {
        flex: 0 0 auto;
        width: 50%;
        display: flex;
        justify-content: center;
    }
}

.help-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%; /* eşit yükseklik için */
}

    .help-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        background: linear-gradient(135deg, #ffecec, #fff);
    }

.help-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #c53030;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.help-item:hover .help-icon {
    background: #ffffff;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.help-content h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #000032;
    transition: color 0.3s ease;
}

.help-item:hover .help-content h4 {
    color: #c53030;
}

.help-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
